Commit b5269973 authored by unknown's avatar unknown
Browse files

dict0load.c:

  Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge
os0thread.c:
  test


innobase/os/os0thread.c:
  test
innobase/dict/dict0load.c:
  Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge
parent 140a86c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -779,7 +779,7 @@ dict_load_table(
	/* Track a corruption bug reported on the MySQL mailing list Jan 14,
	2005: mix_len had a value different from 0 */

	field = rec_get_nth_field(rec, 7, &len);
	field = rec_get_nth_field_old(rec, 7, &len);
	ut_a(len == 4);

	mix_len = mach_read_from_4(field);
+1 −1

File changed.

Contains only whitespace changes.