summaryrefslogtreecommitdiff
path: root/mysys/hash.c
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2002-04-28 21:22:37 +0000
committerunknown <serg@serg.mysql.com>2002-04-28 21:22:37 +0000
commit7abf67c5e966f6409b13774ef9297ffc7d5ae17f (patch)
tree5d37a8e2b57f196aff164e8f9f9a596013cc65e5 /mysys/hash.c
parentebbd2668bd8c660d6f7124a06e8a9fdbb4621c59 (diff)
downloadmariadb-git-7abf67c5e966f6409b13774ef9297ffc7d5ae17f.tar.gz
init_dynamic_array MyODBC compatibility fix
Diffstat (limited to 'mysys/hash.c')
-rw-r--r--mysys/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/hash.c b/mysys/hash.c
index b3769d1dfb2..eaea6d7503f 100644
--- a/mysys/hash.c
+++ b/mysys/hash.c
@@ -44,7 +44,7 @@ my_bool _hash_init(HASH *hash,uint size,uint key_offset,uint key_length,
DBUG_PRINT("enter",("hash: %lx size: %d",hash,size));
hash->records=0;
- if (init_dynamic_array_ci(&hash->array,sizeof(HASH_LINK),size,0))
+ if (my_init_dynamic_array_ci(&hash->array,sizeof(HASH_LINK),size,0))
{
hash->free=0; /* Allow call to hash_free */
DBUG_RETURN(TRUE);