summaryrefslogtreecommitdiff
path: root/sql/sp_head.cc
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2005-12-07 21:16:04 +0300
committerunknown <konstantin@mysql.com>2005-12-07 21:16:04 +0300
commit5213f5894a043b74f12d2be1a43e30de3d5e6b69 (patch)
tree2a5eba58bd5f03054aa1da914977c23557dcf72d /sql/sp_head.cc
parent0f9a9078309bc058e9f898a5a5e3f48852a102da (diff)
downloadmariadb-git-5213f5894a043b74f12d2be1a43e30de3d5e6b69.tar.gz
Fix a compilation failure.
Diffstat (limited to 'sql/sp_head.cc')
-rw-r--r--sql/sp_head.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_head.cc b/sql/sp_head.cc
index cc847a0134c..9f61778202c 100644
--- a/sql/sp_head.cc
+++ b/sql/sp_head.cc
@@ -1518,8 +1518,8 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
Item_func_set_user_var is not fixed after construction,
call fix_fields().
*/
- if ((ret= test(!suv || suv->fix_fields(thd, &item) ||
- suv->check() || suv->update())))
+ if ((err_status= test(!suv || suv->fix_fields(thd, &item) ||
+ suv->check() || suv->update())))
break;
}
}