From 74f3e52f009126aad7a039d02e42f5c60e6209a8 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 25 Apr 2011 23:40:15 -0400 Subject: tevent: cleanup nesting counter when doing a full reinit. We may be forking from within a loop, so we need to clean-up to avoid aborts when nesting is not allowed and we are in a new children. Signed-off-by: Andreas Schneider --- lib/tevent/tevent.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib') diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c index 87e5aff034..51555bae5d 100644 --- a/lib/tevent/tevent.c +++ b/lib/tevent/tevent.c @@ -185,6 +185,13 @@ int tevent_common_context_destructor(struct tevent_context *ev) tevent_cleanup_pending_signal_handlers(se); } + /* clean up nesting or we get an abort when nesting + * is not allowed. -- SSS */ + ev->nesting.allowed = false; + ev->nesting.level = 0; + ev->nesting.hook_fn = NULL; + ev->nesting.hook_private = NULL; + return 0; } -- cgit