Commit 5d0f408d authored by antirez's avatar antirez
Browse files

Don't stop reading redis.conf if line has no args.

Should be "continue" and was "return".

This fixes issue #1110
parent 92f18d04
......@@ -105,7 +105,7 @@ void loadServerConfigFromString(char *config) {
/* Skip this line if the resulting command vector is empty. */
if (argc == 0) {
sdsfreesplitres(argv,argc);
return;
continue;
}
sdstolower(argv[0]);
......
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