Jump to right label on AOF parsing error.
Related to #6054. Former-commit-id: c7159d58f118e840a3b9f72160d1abf3e8a86b3d
This commit is contained in:
parent
0fac746f0e
commit
eafcca9f29
10
src/aof.cpp
10
src/aof.cpp
@ -815,12 +815,14 @@ int loadAppendOnlyFile(char *filename) {
|
||||
|
||||
for (j = 0; j < argc; j++) {
|
||||
/* Parse the argument len. */
|
||||
if (fgets(buf,sizeof(buf),fp) == NULL ||
|
||||
buf[0] != '$')
|
||||
{
|
||||
char *readres = fgets(buf,sizeof(buf),fp);
|
||||
if (readres == NULL || buf[0] != '$') {
|
||||
fakeClient->argc = j; /* Free up to j-1. */
|
||||
freeFakeClientArgv(fakeClient);
|
||||
goto readerr;
|
||||
if (readres == NULL)
|
||||
goto readerr;
|
||||
else
|
||||
goto fmterr;
|
||||
}
|
||||
len = strtol(buf+1,NULL,10);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user