提交 5d0f408d 编写于 作者: A antirez

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

Should be "continue" and was "return".

This fixes issue #1110
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册