diff options
author | unknown <anozdrin/alik@ibm.> | 2007-06-19 01:54:35 +0400 |
---|---|---|
committer | unknown <anozdrin/alik@ibm.> | 2007-06-19 01:54:35 +0400 |
commit | c6d220e9fb3259f886749d78466517e1fcd1e99e (patch) | |
tree | c2e7a6a1cda3207e8c054066b2eeb56bd98ddcc8 /sql/sp_head.cc | |
parent | 5b013eb685a6f744b45c11b67e6ab3bef95661c8 (diff) | |
download | mariadb-git-c6d220e9fb3259f886749d78466517e1fcd1e99e.tar.gz |
Fix typo in the patch for BUG#25411 on 24-Apr-2007.
sql/handler.cc:
Polishing to have the consistent code.
sql/sp_head.cc:
Polishing to have the consistent code.
sql/sql_error.cc:
Polishing to have the consistent code.
sql/sql_trigger.cc:
Polishing to have the consistent code.
Diffstat (limited to 'sql/sp_head.cc')
-rw-r--r-- | sql/sp_head.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_head.cc b/sql/sp_head.cc index a98fe5027c9..d939fd20b9b 100644 --- a/sql/sp_head.cc +++ b/sql/sp_head.cc @@ -2581,7 +2581,7 @@ sp_instr_set::exec_core(THD *thd, uint *nextp) sp_rcontext *spcont= thd->spcont; - thd->spcont= 0; /* Avoid handlers */ + thd->spcont= NULL; /* Avoid handlers */ my_error(ER_OUT_OF_RESOURCES, MYF(0)); spcont->clear_handler(); thd->spcont= spcont; @@ -3316,7 +3316,7 @@ sp_instr_set_case_expr::exec_core(THD *thd, uint *nextp) sp_rcontext *spcont= thd->spcont; - thd->spcont= 0; /* Avoid handlers */ + thd->spcont= NULL; /* Avoid handlers */ my_error(ER_OUT_OF_RESOURCES, MYF(0)); spcont->clear_handler(); thd->spcont= spcont; |