]> git.saurik.com Git - redis.git/commitdiff
Dead code removed from replication.c.
authorantirez <antirez@gmail.com>
Thu, 24 May 2012 09:35:21 +0000 (11:35 +0200)
committerantirez <antirez@gmail.com>
Thu, 24 May 2012 13:22:31 +0000 (15:22 +0200)
The user @jokea noticed that the following line of code into
replication.c made little sense:

    addReplySds(slave,sdsempty());

Investigating a bit I found that this was introduced by commit 6208b3a7
three years ago in the early stages of Redis. The code apparently is not
useful at all, so I'm removing it.

This change will not be backported into 2.4 so that in the rare case
this should introduce a bug, we'll have a chance to detect it into the
development branch. However following the code path it seems like the
code is not useful at all, so the risk is truly small.

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");
     }
 }