mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 17:10:50 +00:00
Don't stop reading redis.conf if line has no args.
Should be "continue" and was "return". This fixes issue #1110
This commit is contained in:
parent
92f18d04a0
commit
5d0f408d42
@ -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]);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user