Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
5aeb1f71
"vscode:/vscode.git/clone" did not exist on "9db4cea23576d9735c906829d4c4d2feb7720bf0"
Commit
5aeb1f71
authored
Feb 05, 2013
by
charsyam
Committed by
antirez
Mar 06, 2013
Browse files
Don't segfault on unbalanced quotes.
parent
aadb8aaa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/config.c
View file @
5aeb1f71
...
...
@@ -73,6 +73,10 @@ void loadServerConfigFromString(char *config) {
/* Split into arguments */
argv
=
sdssplitargs
(
lines
[
i
],
&
argc
);
if
(
argv
==
NULL
)
{
err
=
"can't parse this line"
;
goto
loaderr
;
}
sdstolower
(
argv
[
0
]);
/* Execute config directives */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment