diff options
author | Jeremy Allison <jra@samba.org> | 2013-02-11 10:53:15 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-02-14 10:19:38 -0800 |
commit | 1ee428d5cad6910521ce77322614183fa2c7916e (patch) | |
tree | 25201d3c7b7af896e4e7a2c79614dd4943a7b099 /lib/tevent/tevent_select.c | |
parent | 06fb88b449806d6de7ca20c73778dd6545a38cf7 (diff) | |
download | samba-1ee428d5cad6910521ce77322614183fa2c7916e.tar.gz samba-1ee428d5cad6910521ce77322614183fa2c7916e.tar.xz samba-1ee428d5cad6910521ce77322614183fa2c7916e.zip |
tevent: Add in the same tevent_re_initialise() fix Metze put in the tevent_poll backend.
We might be called during tevent_re_initialise()
which means we need to free our old additional_data.
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib/tevent/tevent_select.c')
-rw-r--r-- | lib/tevent/tevent_select.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/tevent/tevent_select.c b/lib/tevent/tevent_select.c index c11f0e8324..7e0c927dd9 100644 --- a/lib/tevent/tevent_select.c +++ b/lib/tevent/tevent_select.c @@ -47,6 +47,12 @@ static int select_event_context_init(struct tevent_context *ev) { struct select_event_context *select_ev; + /* + * We might be called during tevent_re_initialise() + * which means we need to free our old additional_data. + */ + TALLOC_FREE(ev->additional_data); + select_ev = talloc_zero(ev, struct select_event_context); if (!select_ev) return -1; select_ev->ev = ev; |