Searched refs:heapbuf (Results 1 – 1 of 1) sorted by relevance
2593 unsigned char buf[sizeof(clusterMsg)], *heapbuf; in clusterSendModule() local2608 heapbuf = buf; in clusterSendModule()2610 heapbuf = zmalloc(totlen); in clusterSendModule()2611 memcpy(heapbuf,hdr,sizeof(*hdr)); in clusterSendModule()2612 hdr = (clusterMsg*) heapbuf; in clusterSendModule()2617 clusterSendMessage(link,heapbuf,totlen); in clusterSendModule()2619 clusterBroadcastMessage(heapbuf,totlen); in clusterSendModule()2621 if (heapbuf != buf) zfree(heapbuf); in clusterSendModule()