diff options
author | miguel@hegel.local <> | 2002-05-12 23:01:45 -0300 |
---|---|---|
committer | miguel@hegel.local <> | 2002-05-12 23:01:45 -0300 |
commit | 3facae335e107c37fb18d915905a5739c72e3af0 (patch) | |
tree | 81c84bd394a1f2fdc40c770346f550acb2c79f58 /extra | |
parent | 59a00868c950e6c064c3b1155210c51e1d92cb67 (diff) | |
download | mariadb-git-3facae335e107c37fb18d915905a5739c72e3af0.tar.gz |
Sergei's MyODBC fix
Diffstat (limited to 'extra')
-rw-r--r-- | extra/resolve_stack_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/resolve_stack_dump.c b/extra/resolve_stack_dump.c index fbb5ad5e378..a08845b8de3 100644 --- a/extra/resolve_stack_dump.c +++ b/extra/resolve_stack_dump.c @@ -231,9 +231,9 @@ static int init_sym_entry(SYM_ENTRY* se, char* buf) static void init_sym_table() { char buf[512]; - if(init_dynamic_array(&sym_table, sizeof(SYM_ENTRY), INIT_SYM_TABLE, + if(my_init_dynamic_array(&sym_table, sizeof(SYM_ENTRY), INIT_SYM_TABLE, INC_SYM_TABLE)) - die("Failed in init_dynamic_array() -- looks like out of memory problem"); + die("Failed in my_init_dynamic_array() -- looks like out of memory problem"); while(fgets(buf, sizeof(buf), fp_sym)) { |