From: Jeremy Allison Date: Tue, 16 Feb 2016 22:23:53 +0000 (-0800) Subject: lib: tevent: Fix memory leak reported by Pavel Březina when... X-Git-Tag: samba-4.2.12~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8fb85f79ddbc0aafb39ffe31a74b5c233056890;p=thirdparty%2Fsamba.git lib: tevent: Fix memory leak reported by Pavel Březina when old signal action restored. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11742 Bug: https://bugzilla.samba.org/show_bug.cgi?id=11771 Signed-off-by: Jeremy Allison Reviewed-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Thu Feb 18 01:42:50 CET 2016 on sn-devel-144 (cherry picked from commit 833a2f474367624dd9980abb28227850e95fe976) --- diff --git a/lib/tevent/tevent_signal.c b/lib/tevent/tevent_signal.c index 924dc05c029..9bc11edca42 100644 --- a/lib/tevent/tevent_signal.c +++ b/lib/tevent/tevent_signal.c @@ -212,6 +212,7 @@ static int tevent_signal_destructor(struct tevent_signal *se) /* restore old handler, if any */ if (sig_state->oldact[se->signum]) { sigaction(se->signum, sig_state->oldact[se->signum], NULL); + talloc_free(sig_state->oldact[se->signum]); sig_state->oldact[se->signum] = NULL; } #ifdef SA_SIGINFO @@ -342,6 +343,8 @@ struct tevent_signal *tevent_common_add_signal(struct tevent_context *ev, return NULL; } if (sigaction(signum, &act, sig_state->oldact[signum]) == -1) { + talloc_free(sig_state->oldact[signum]); + sig_state->oldact[signum] = NULL; talloc_free(se); return NULL; } @@ -505,6 +508,7 @@ void tevent_cleanup_pending_signal_handlers(struct tevent_signal *se) if (sig_state->sig_handlers[se->signum] == NULL) { if (sig_state->oldact[se->signum]) { sigaction(se->signum, sig_state->oldact[se->signum], NULL); + talloc_free(sig_state->oldact[se->signum]); sig_state->oldact[se->signum] = NULL; } }