Fix callback deadlocks after calling mosquitto_disconnect(), when using the threaded interfaces. Closes bug #1313725.

Thanks to Michael Frommberger.
pull/211/merge
Roger A. Light 12 years ago
parent 06625420e2
commit b6f2d3e087

@ -18,6 +18,8 @@ Broker:
Client library:
- Fix topic matching edge case.
- Fix callback deadlocks after calling mosquitto_disconnect(), when using the
threaded interfaces. Closes bug #1313725.
General:
- Use $(STRIP) for stripping binaries when installing, to allow easier cross

@ -776,6 +776,7 @@ int _mosquitto_packet_write(struct mosquitto *mosq)
mosq->on_disconnect(mosq, mosq->userdata, 0);
mosq->in_callback = false;
}
pthread_mutex_unlock(&mosq->callback_mutex);
pthread_mutex_unlock(&mosq->current_out_packet_mutex);
return MOSQ_ERR_SUCCESS;
}

Loading…
Cancel
Save