提交 0b398b6f 编写于 作者: A antirez

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

Should be "continue" and was "return".

This fixes issue #1110
上级 059018c4
...@@ -105,7 +105,7 @@ void loadServerConfigFromString(char *config) { ...@@ -105,7 +105,7 @@ void loadServerConfigFromString(char *config) {
/* Skip this line if the resulting command vector is empty. */ /* Skip this line if the resulting command vector is empty. */
if (argc == 0) { if (argc == 0) {
sdsfreesplitres(argv,argc); sdsfreesplitres(argv,argc);
return; continue;
} }
sdstolower(argv[0]); sdstolower(argv[0]);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册