From 5213f5894a043b74f12d2be1a43e30de3d5e6b69 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 7 Dec 2005 21:16:04 +0300 Subject: [PATCH] Fix a compilation failure. --- sql/sp_head.cc | 4 ++-- 1 file 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 *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; } }