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
ecd17e81
Commit
ecd17e81
authored
Jan 13, 2020
by
antirez
Browse files
Jump to right label on AOF parsing error.
Related to #6054.
parent
1927932b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/aof.c
View file @
ecd17e81
...
@@ -789,12 +789,14 @@ int loadAppendOnlyFile(char *filename) {
...
@@ -789,12 +789,14 @@ int loadAppendOnlyFile(char *filename) {
for (j = 0; j < argc; j++) {
for (j = 0; j < argc; j++) {
/* Parse the argument len. */
/* Parse the argument len. */
if (fgets(buf,sizeof(buf),fp) == NULL ||
char *readres = fgets(buf,sizeof(buf),fp);
buf[0] != '$')
if (readres == NULL || buf[0] != '$') {
{
fakeClient->argc = j; /* Free up to j-1. */
fakeClient->argc = j; /* Free up to j-1. */
freeFakeClientArgv(fakeClient);
freeFakeClientArgv(fakeClient);
goto readerr;
if (readres == NULL)
goto readerr;
else
goto fmterr;
}
}
len = strtol(buf+1,NULL,10);
len = strtol(buf+1,NULL,10);
...
...
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