1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

After merge fixes

This commit is contained in:
monty@mysql.com
2005-06-07 05:43:59 +03:00
parent 775f17667b
commit 068bd3eb97
7 changed files with 51 additions and 56 deletions

View File

@ -5028,7 +5028,7 @@ bool check_stack_overrun(THD *thd, long margin,
{
long stack_used;
if ((stack_used=used_stack(thd->thread_stack,(char*) &stack_used)) >=
thread_stack - margin)
(long) (thread_stack - margin))
{
sprintf(errbuff[0],ER(ER_STACK_OVERRUN),stack_used,thread_stack);
my_message(ER_STACK_OVERRUN,errbuff[0],MYF(0));