summaryrefslogtreecommitdiff
path: root/sql/sql_udf.cc
diff options
context:
space:
mode:
authorunknown <wax@mysql.com>2003-01-28 03:28:06 +0500
committerunknown <wax@mysql.com>2003-01-28 03:28:06 +0500
commit1220b05c3dfef51c784ea4af19e06bef18914725 (patch)
treeb63eb675945a03c06dc9f590f389b316d267b045 /sql/sql_udf.cc
parent8d29692013c2dea60b37086a496b4b0f173341f7 (diff)
downloadmariadb-git-1220b05c3dfef51c784ea4af19e06bef18914725.tar.gz
correct parameter of hash_search
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r--sql/sql_udf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_udf.cc b/sql/sql_udf.cc
index cdbe35cf621..3b362bf3e3f 100644
--- a/sql/sql_udf.cc
+++ b/sql/sql_udf.cc
@@ -378,7 +378,7 @@ int mysql_create_function(THD *thd,udf_func *udf)
}
rw_wrlock(&THR_LOCK_udf);
- if ((hash_search(&udf_hash,(byte*) &udf->name.str, udf->name.length)))
+ if ((hash_search(&udf_hash,(byte*) udf->name.str, udf->name.length)))
{
net_printf(thd, ER_UDF_EXISTS, udf->name);
goto err;