]> git.saurik.com Git - redis.git/blobdiff - src/aof.c
Eval command table fixed to return the keys arguments of the command. We use zunionIn...
[redis.git] / src / aof.c
index e5327cb2d0a46af451d96ddc3bd66e5c6f01b887..ef72a2b169a007387179e5d24d4830fcbb50e047 100644 (file)
--- a/src/aof.c
+++ b/src/aof.c
@@ -348,7 +348,7 @@ int rewriteAppendOnlyFile(char *filename) {
 
         /* Iterate this DB writing every entry */
         while((de = dictNext(di)) != NULL) {
-            sds keystr = dictGetEntryKey(de);
+            sds keystr;
             robj key, *o;
             time_t expiretime;