diff options
author | monty@mysql.com <> | 2005-05-18 19:00:21 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2005-05-18 19:00:21 +0300 |
commit | db40af2a6febea29d1e66ba98c52cc3c096af73c (patch) | |
tree | b3842c1613c97d550be652ce1e354686b5ca35ee /sql/sql_acl.cc | |
parent | ca5b291be0dcd9eef373bbcb3663976fe0ef2dbc (diff) | |
download | mariadb-git-db40af2a6febea29d1e66ba98c52cc3c096af73c.tar.gz |
Fix warnings from icc
Added BUILD scripts for icc
Fixed (one time) memory leak in grant handling
Diffstat (limited to 'sql/sql_acl.cc')
-rw-r--r-- | sql/sql_acl.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc index 2c4f860c982..7caece67599 100644 --- a/sql/sql_acl.cc +++ b/sql/sql_acl.cc @@ -3115,6 +3115,7 @@ void grant_free(void) grant_option = FALSE; hash_free(&column_priv_hash); hash_free(&proc_priv_hash); + hash_free(&func_priv_hash); free_root(&memex,MYF(0)); DBUG_VOID_RETURN; } |