diff options
author | monty@hundin.mysql.fi <> | 2002-06-28 15:06:04 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-06-28 15:06:04 +0300 |
commit | 33f84cf8fee58ee203fc3d2ee5e540ce7acedd9d (patch) | |
tree | 50f891adc2032af8c95592f9869e2a78f3cc778f /myisam/sort.c | |
parent | ade20c5b19b3627a10ee4e29e23cc9e9ceef1f64 (diff) | |
download | mariadb-git-33f84cf8fee58ee203fc3d2ee5e540ce7acedd9d.tar.gz |
Fixed bug in REPAIR table.
Portability fix in safemalloc.c
Diffstat (limited to 'myisam/sort.c')
-rw-r--r-- | myisam/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/sort.c b/myisam/sort.c index 323983b05f8..65b606f7a68 100644 --- a/myisam/sort.c +++ b/myisam/sort.c @@ -701,7 +701,7 @@ merge_buffers(MI_SORT_PARAM *info, uint keys, IO_CACHE *from_file, if (init_queue(&queue,(uint) (Tb-Fb)+1,offsetof(BUFFPEK,key),0, (int (*)(void*, byte *,byte*)) info->key_cmp, - (void*) info->sort_info)) + (void*) info)) DBUG_RETURN(1); /* purecov: inspected */ for (buffpek= Fb ; buffpek <= Tb ; buffpek++) |