Commit 07473fea authored by antirez's avatar antirez
Browse files

ACL: fix ACLSaveToFile() return value.

parent 2bea3929
...@@ -1324,7 +1324,7 @@ cleanup: ...@@ -1324,7 +1324,7 @@ cleanup:
if (tmpfilename) unlink(tmpfilename); if (tmpfilename) unlink(tmpfilename);
sdsfree(tmpfilename); sdsfree(tmpfilename);
sdsfree(acl); sdsfree(acl);
return C_OK; return retval;
} }
/* This function is called once the server is already running, modules are /* This function is called once the server is already running, modules are
......
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