diff options
author | unknown <serg@serg.mylan> | 2005-03-26 19:46:42 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-03-26 19:46:42 +0100 |
commit | 7f7f4f30b383f98a0d6327d7ec3399035757f279 (patch) | |
tree | 0b5649d7f02826f731642141dbe964360536a02a /sql/sql_acl.cc | |
parent | c5ad0fc0ce717485d64d684586f7ed9e62b1a63c (diff) | |
download | mariadb-git-7f7f4f30b383f98a0d6327d7ec3399035757f279.tar.gz |
fixes for "backport wild_compare fix from 4.1 - bug#3924"
sql/sql_acl.cc:
don't use acl_cache for GRANT
sql/sql_parse.cc:
fixed backporting error in "backport wild_compare fix from 4.1 - bug#3924"
Diffstat (limited to 'sql/sql_acl.cc')
-rw-r--r-- | sql/sql_acl.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc index c883407970a..acdd07b2fc5 100644 --- a/sql/sql_acl.cc +++ b/sql/sql_acl.cc @@ -855,6 +855,9 @@ static void acl_insert_db(const char *user, const char *host, const char *db, /* Get privilege for a host, user and db combination + + as db_is_pattern changes the semantics of comparison, + acl_cache is not used if db_is_pattern is set. */ ulong acl_get(const char *host, const char *ip, const char *bin_ip, @@ -875,7 +878,7 @@ ulong acl_get(const char *host, const char *ip, const char *bin_ip, db=tmp_db; } key_length=(uint) (end-key); - if ((entry=(acl_entry*) acl_cache->search(key,key_length))) + if (!db_is_pattern && (entry=(acl_entry*) acl_cache->search(key,key_length))) { db_access=entry->access; VOID(pthread_mutex_unlock(&acl_cache->lock)); @@ -923,7 +926,8 @@ ulong acl_get(const char *host, const char *ip, const char *bin_ip, } exit: /* Save entry in cache for quick retrieval */ - if ((entry= (acl_entry*) malloc(sizeof(acl_entry)+key_length))) + if (!db_is_pattern && + (entry= (acl_entry*) malloc(sizeof(acl_entry)+key_length))) { entry->access=(db_access & host_access); entry->length=key_length; |