Commit eb840f9b authored by antirez's avatar antirez
Browse files

ACL: fix command ID assignment off by one error.

parent 53ba09e0
......@@ -511,6 +511,7 @@ unsigned long ACLGetCommandID(const char *cmdname) {
raxInsert(map,(unsigned char*)lowername,strlen(lowername),
(void*)nextid,NULL);
sdsfree(lowername);
unsigned long thisid = nextid;
nextid++;
/* We never assign the last bit in the user commands bitmap structure,
......@@ -522,7 +523,7 @@ unsigned long ACLGetCommandID(const char *cmdname) {
* default (loaded via modules). This is useful when rewriting the ACLs
* with ACL SAVE. */
if (nextid == USER_COMMAND_BITS_COUNT-1) nextid++;
return nextid;
return thisid;
}
/* Return an username by its name, or NULL if the user does not exist. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment