diff options
author | monty@donna.mysql.fi <> | 2001-04-01 13:45:48 +0300 |
---|---|---|
committer | monty@donna.mysql.fi <> | 2001-04-01 13:45:48 +0300 |
commit | 65822120f5b553914de5d3c8983014ae896ee81a (patch) | |
tree | b31bc7d8e38b04c6603c8f2240f10f86497e5003 /sql/derror.cc | |
parent | a49a2e20012c5722e99e17cb3ef9c28a04389d96 (diff) | |
download | mariadb-git-65822120f5b553914de5d3c8983014ae896ee81a.tar.gz |
Fixed bug in ALTER TABLE
Removed _mi_rkey() function
New fork_big.pl multi-thread test
Diffstat (limited to 'sql/derror.cc')
-rw-r--r-- | sql/derror.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/derror.cc b/sql/derror.cc index 7a5bcd360a2..62971fde394 100644 --- a/sql/derror.cc +++ b/sql/derror.cc @@ -72,7 +72,7 @@ static void read_texts(const char *file_name,const char ***point, Check that the above file is the right version for this program!\n\n", my_progname,name,ant,error_messages); VOID(my_close(file,MYF(MY_WME))); - clean_up(); /* Clean_up frees everything */ + clean_up(0); /* Clean_up frees everything */ exit(1); /* We can't continue */ } @@ -115,7 +115,7 @@ err: if (file != FERR) VOID(my_close(file,MYF(MY_WME))); fprintf(stderr,buff,my_progname,name); - clean_up(); /* Clean_up frees everything */ + clean_up(0); /* Clean_up frees everything */ exit(1); /* We can't continue */ } /* read_texts */ |