]> git.saurik.com Git - redis.git/blobdiff - src/cluster.c
Added tests checking ability of the scripting engine to reorder the output of command...
[redis.git] / src / cluster.c
index 4ccff657363659b4d8c8920e5c07f88aaf791b08..85cb119811008fd770a46f2a46118089a6192b64 100644 (file)
@@ -613,7 +613,7 @@ int clusterProcessPacket(clusterLink *link) {
             }
         }
         /* Update our info about the node */
-        link->node->pong_received = time(NULL);
+        if (link->node) link->node->pong_received = time(NULL);
 
         /* Update master/slave info */
         if (sender) {
@@ -804,7 +804,7 @@ void clusterBroadcastMessage(void *buf, size_t len) {
 
 /* Build the message header */
 void clusterBuildMessageHdr(clusterMsg *hdr, int type) {
-    int totlen;
+    int totlen = 0;
 
     memset(hdr,0,sizeof(*hdr));
     hdr->type = htons(type);