Commit 09f6d547 authored by unknown's avatar unknown
Browse files

Fixed that max_zfile_size was incorrectly calculated on big-endian boxes.

Was introduced with patch for bug#21675.

parent 819b0eb1
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -206,7 +206,17 @@ bool archive_db_init()
  else
  {
    zoffset_size= 2 << ((zlibCompileFlags() >> 6) & 3);
    max_zfile_size= (z_off_t) (~(1 << (zoffset_size * 8 - 1)));
    switch (sizeof(z_off_t)) {
    case 2:
      max_zfile_size= INT_MAX16;
      break;
    case 8:
      max_zfile_size= LONGLONG_MAX;
      break;
    case 4:
    default:
      max_zfile_size= INT_MAX32;
    }
    archive_inited= TRUE;
    DBUG_RETURN(FALSE);
  }