Commit 9b810f1c authored by antirez's avatar antirez
Browse files

Merge branch 'unstable' into limits

parents c69ad1f2 6710ff24
...@@ -804,7 +804,7 @@ void clusterBroadcastMessage(void *buf, size_t len) { ...@@ -804,7 +804,7 @@ void clusterBroadcastMessage(void *buf, size_t len) {
/* Build the message header */ /* Build the message header */
void clusterBuildMessageHdr(clusterMsg *hdr, int type) { void clusterBuildMessageHdr(clusterMsg *hdr, int type) {
int totlen; int totlen = 0;
memset(hdr,0,sizeof(*hdr)); memset(hdr,0,sizeof(*hdr));
hdr->type = htons(type); hdr->type = htons(type);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment