diff options
author | wax@mysql.com <> | 2003-01-28 03:28:06 +0500 |
---|---|---|
committer | wax@mysql.com <> | 2003-01-28 03:28:06 +0500 |
commit | d844f8d02d64eb8f27e3dbd0567345b304f2e512 (patch) | |
tree | b63eb675945a03c06dc9f590f389b316d267b045 /sql/sql_udf.cc | |
parent | dfed401e695f56f328d670f08df9396beef84c5c (diff) | |
download | mariadb-git-d844f8d02d64eb8f27e3dbd0567345b304f2e512.tar.gz |
correct parameter of hash_search
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r-- | sql/sql_udf.cc | 2 |
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; |