From 3fc93164fb83e396e2b757672d65269509fa7148 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 17 Feb 2013 16:40:20 +0100 Subject: tevent: don't call TALLOC_FREE(ev->additional_data) in std_fallback_to_poll() The epoll backend has done the cleanup already. Signed-off-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- lib/tevent/tevent_standard.c | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/tevent') diff --git a/lib/tevent/tevent_standard.c b/lib/tevent/tevent_standard.c index d7a5bd7b18..a9c6170320 100644 --- a/lib/tevent/tevent_standard.c +++ b/lib/tevent/tevent_standard.c @@ -68,7 +68,6 @@ static bool std_fallback_to_poll(struct tevent_context *ev, bool replay) /* First switch all the ops to poll. */ glue->epoll_ops = NULL; - TALLOC_FREE(ev->additional_data); /* * Set custom_ops the same as poll. -- cgit