diff options
author | unknown <tnurnberg@mysql.com> | 2006-04-20 00:55:30 +0200 |
---|---|---|
committer | unknown <tnurnberg@mysql.com> | 2006-04-20 00:55:30 +0200 |
commit | c5faf3689b361392d50cdd7c81cc1b86c8a65b5a (patch) | |
tree | 188439795231b38d080e46e6b9541786af9a8904 /sql/sql_base.cc | |
parent | 073e16999e2f73082cab9166b6060f451ed1af70 (diff) | |
download | mariadb-git-c5faf3689b361392d50cdd7c81cc1b86c8a65b5a.tar.gz |
debugging a BK issue
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r-- | sql/sql_base.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 4b063fdb5e6..2b5a3d1f38d 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -1103,7 +1103,7 @@ TABLE *open_table(THD *thd, TABLE_LIST *table_list, MEM_ROOT *mem_root, /* an open table operation needs a lot of the stack space */ if (check_stack_overrun(thd, STACK_MIN_SIZE_FOR_OPEN, (char *)&alias)) - DBUG_RETURN(0); + return 0; if (thd->killed) DBUG_RETURN(0); |