mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 16:21:03 +00:00
Fix the AOF fix of the latest commit ;)
This commit is contained in:
parent
daf2049d0d
commit
5bd09cd4c5
@ -501,9 +501,9 @@ int rewriteAppendOnlyFile(char *filename) {
|
|||||||
if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
|
if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
|
||||||
if (fwriteBulkObject(fp,&key) == 0) goto werr;
|
if (fwriteBulkObject(fp,&key) == 0) goto werr;
|
||||||
if (fwriteBulkString(fp,(char*)field,flen) == 0)
|
if (fwriteBulkString(fp,(char*)field,flen) == 0)
|
||||||
return -1;
|
goto werr;
|
||||||
if (fwriteBulkString(fp,(char*)val,vlen) == 0)
|
if (fwriteBulkString(fp,(char*)val,vlen) == 0)
|
||||||
return -1;
|
goto werr;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
dictIterator *di = dictGetIterator(o->ptr);
|
dictIterator *di = dictGetIterator(o->ptr);
|
||||||
@ -515,8 +515,8 @@ int rewriteAppendOnlyFile(char *filename) {
|
|||||||
|
|
||||||
if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
|
if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
|
||||||
if (fwriteBulkObject(fp,&key) == 0) goto werr;
|
if (fwriteBulkObject(fp,&key) == 0) goto werr;
|
||||||
if (fwriteBulkObject(fp,field) == -1) return REDIS_ERR;
|
if (fwriteBulkObject(fp,field) == 0) goto werr;
|
||||||
if (fwriteBulkObject(fp,val) == -1) return REDIS_ERR;
|
if (fwriteBulkObject(fp,val) == 0) goto werr;
|
||||||
}
|
}
|
||||||
dictReleaseIterator(di);
|
dictReleaseIterator(di);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user