diff options
author | Volker Lendecke <vl@samba.org> | 2012-08-10 15:24:23 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2012-08-16 18:05:34 +0200 |
commit | b83cd05ce1ff3357428cbc789ac4dbd08aa706ec (patch) | |
tree | 375d345bdc779401ad5ad6100ee7dc83abe13778 /source3 | |
parent | 8e50ff02f1e0b1b95418d80ab61ffeb474de13eb (diff) | |
download | samba-b83cd05ce1ff3357428cbc789ac4dbd08aa706ec.tar.gz samba-b83cd05ce1ff3357428cbc789ac4dbd08aa706ec.tar.bz2 samba-b83cd05ce1ff3357428cbc789ac4dbd08aa706ec.zip |
s3-msg: For msg_channel, correct the talloc hierarchy
talloc_free() of a channel must free all immediate requests that have
piled up
Signed-off-by: Christian Ambach <ambi@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/msg_channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/msg_channel.c b/source3/lib/msg_channel.c index 2b02f563e7..c68c11ec2f 100644 --- a/source3/lib/msg_channel.c +++ b/source3/lib/msg_channel.c @@ -196,7 +196,7 @@ static void msg_channel_init_got_msg(struct messaging_context *msg, return; } - im = tevent_create_immediate(s->ev); + im = tevent_create_immediate(s); if (im == NULL) { goto fail; } |