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
2929ca97
Commit
2929ca97
authored
Aug 26, 2010
by
Pieter Noordhuis
Browse files
Fix parenthesis error on decrementing *argc
parent
bad7d097
Changes
1
Show whitespace changes
Inline
Side-by-side
src/sds.c
View file @
2929ca97
...
...
@@ -465,7 +465,7 @@ sds *sdssplitargs(char *line, int *argc) {
}
err:
while
(
*
argc
--
)
while
(
(
*
argc
)
--
)
sdsfree
(
vector
[
*
argc
]);
zfree
(
vector
);
if
(
current
)
sdsfree
(
current
);
...
...
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