We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zmq_van.h, RecvMsg function;
190 } else if (i == 1) { 191 // task 192 UnpackMeta(buf, size, &(msg->meta)); 193 zmq_msg_close(zmsg); 194 bool more = zmq_msg_more(zmsg); 195 delete zmsg; 196 if (!more) break; 197 } else {
Seems we should call line 194 first and then call line 193.
The text was updated successfully, but these errors were encountered:
misc: minor update for debugging & compilation (dmlc#92)
f25af22
No branches or pull requests
zmq_van.h, RecvMsg function;
190 } else if (i == 1) {
191 // task
192 UnpackMeta(buf, size, &(msg->meta));
193 zmq_msg_close(zmsg);
194 bool more = zmq_msg_more(zmsg);
195 delete zmsg;
196 if (!more) break;
197 } else {
Seems we should call line 194 first and then call line 193.
The text was updated successfully, but these errors were encountered: