summaryrefslogtreecommitdiff
path: root/sql/sp_head.cc
diff options
context:
space:
mode:
authorunknown <dlenev@mockturtle.local>2007-05-12 00:03:50 +0400
committerunknown <dlenev@mockturtle.local>2007-05-12 00:03:50 +0400
commitc9af98c4a4171900f7d6b56710f406e5aa09029d (patch)
tree24d07e39c930e837729999f64d6462061c294a19 /sql/sp_head.cc
parent5c5623775cf1006c5d9974073e63347a1732578c (diff)
downloadmariadb-git-c9af98c4a4171900f7d6b56710f406e5aa09029d.tar.gz
Added missing DBUG_VOID_RETURN to the sp_head::init_sp_name() method.
Diffstat (limited to 'sql/sp_head.cc')
-rw-r--r--sql/sp_head.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sp_head.cc b/sql/sp_head.cc
index 5a1faf50296..31388e0e19c 100644
--- a/sql/sp_head.cc
+++ b/sql/sp_head.cc
@@ -512,6 +512,8 @@ sp_head::init_sp_name(THD *thd, sp_name *spname)
m_qname.length= spname->m_qname.length;
m_qname.str= strmake_root(thd->mem_root, spname->m_qname.str,
m_qname.length);
+
+ DBUG_VOID_RETURN;
}