diff options
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/stream/packet.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/lib/stream/packet.c b/source4/lib/stream/packet.c index 51021c1fc6..92fa0e5a54 100644 --- a/source4/lib/stream/packet.c +++ b/source4/lib/stream/packet.c @@ -469,7 +469,13 @@ _PUBLIC_ void packet_queue_run(struct packet_context *pc) if (el->nsent == el->blob.length) { DLIST_REMOVE(pc->send_queue, el); if (el->send_callback) { + pc->busy = true; el->send_callback(el->send_callback_private); + pc->busy = false; + if (pc->destructor_called) { + talloc_free(pc); + return; + } } talloc_free(el); } |