Merge branch 'unstable' into limits

This commit is contained in:
antirez 2012-01-25 16:46:53 +01:00
commit 9b810f1cde

View File

@ -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);