Commit 922e7582 authored by unknown's avatar unknown
Browse files

Bug #12527 yassl causes errors in "repair" and "optimize"

 - Use constant directly to check that enough number of bytes have been written as header of the archive.


sql/examples/ha_archive.cc:
  Don't take "sizeof" the constant DATA_BUFFER_SIZE. Simply use DATA_BUFFER_SIZE as is.
parent 4161d7cb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -225,7 +225,7 @@ int ha_archive::write_data_header(gzFile file_to_write)
  data_buffer[1]= (uchar)ARCHIVE_VERSION;

  if (gzwrite(file_to_write, &data_buffer, DATA_BUFFER_SIZE) != 
      sizeof(DATA_BUFFER_SIZE))
      DATA_BUFFER_SIZE)
    goto error;
  DBUG_PRINT("ha_archive::write_data_header", ("Check %u", (uint)data_buffer[0]));
  DBUG_PRINT("ha_archive::write_data_header", ("Version %u", (uint)data_buffer[1]));