From b83cd05ce1ff3357428cbc789ac4dbd08aa706ec Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 10 Aug 2012 15:24:23 +0200 Subject: 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 --- source3/lib/msg_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/msg_channel.c') 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; } -- cgit