summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorunknown <miguel@hegel.local>2002-05-12 23:01:45 -0300
committerunknown <miguel@hegel.local>2002-05-12 23:01:45 -0300
commit716ed1168f280cd75df310ca80d85b58339b10ef (patch)
tree81c84bd394a1f2fdc40c770346f550acb2c79f58 /extra
parent77957ae868263b7439289d7ae3a79e858f32427c (diff)
downloadmariadb-git-716ed1168f280cd75df310ca80d85b58339b10ef.tar.gz
Sergei's MyODBC fix
Diffstat (limited to 'extra')
-rw-r--r--extra/resolve_stack_dump.c4
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))
{