summaryrefslogtreecommitdiff
path: root/sql/sp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sp.cc')
-rw-r--r--sql/sp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp.cc b/sql/sp.cc
index 4a0ce65bf75..1d0f32a2888 100644
--- a/sql/sp.cc
+++ b/sql/sp.cc
@@ -2831,7 +2831,7 @@ Sp_handler::sp_cache_package_routine(THD *thd,
sp_package *pkg= ph ? ph->get_package() : NULL;
LEX_CSTRING tmp= name->m_name;
const char *dot= strrchr(tmp.str, '.');
- size_t prefix_length= dot ? dot - tmp.str + 1 : NULL;
+ size_t prefix_length= dot ? dot - tmp.str + 1 : 0;
tmp.str+= prefix_length;
tmp.length-= prefix_length;
LEX *rlex= pkg ? pkg->m_routine_implementations.find(tmp, type()) : NULL;