diff options
Diffstat (limited to 'sql/sp_pcontext.cc')
-rw-r--r-- | sql/sp_pcontext.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_pcontext.cc b/sql/sp_pcontext.cc index 6afca24231b..faf5a2de891 100644 --- a/sql/sp_pcontext.cc +++ b/sql/sp_pcontext.cc @@ -205,7 +205,7 @@ sp_label *sp_pcontext::push_label(THD *thd, LEX_STRING name, uint ip) if (!label) return NULL; - m_labels.push_front(label); + m_labels.push_front(label, thd->mem_root); return label; } |