]> git.saurik.com Git - redis.git/blobdiff - src/replication.c
BITOP bug when called against non existing keys fixed.
[redis.git] / src / replication.c
index 5c5bc9abfa2452a7cae0459e3c3f4de765924f64..8eb36f837e192b06be1f0dcdbf128f88de0932b8 100644 (file)
@@ -194,7 +194,6 @@ void sendBulkToSlave(aeEventLoop *el, int fd, void *privdata, int mask) {
             freeClient(slave);
             return;
         }
-        addReplySds(slave,sdsempty());
         redisLog(REDIS_NOTICE,"Synchronization with slave succeeded");
     }
 }