diff options
author | konstantin@mysql.com <> | 2005-12-07 21:16:04 +0300 |
---|---|---|
committer | konstantin@mysql.com <> | 2005-12-07 21:16:04 +0300 |
commit | 4821559e47d29f12f804783e2a9320979b682115 (patch) | |
tree | 2a5eba58bd5f03054aa1da914977c23557dcf72d /sql/sp_head.cc | |
parent | 5517b5d4196ed5ddf1be14d52514b1f52865ac54 (diff) | |
download | mariadb-git-4821559e47d29f12f804783e2a9320979b682115.tar.gz |
Fix a compilation failure.
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 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; } } |