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_epoll.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_epoll.c')
-rw-r--r-- | lib/tevent/tevent_epoll.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/tevent/tevent_epoll.c b/lib/tevent/tevent_epoll.c index 5a17331da6c..8696215f49f 100644 --- a/lib/tevent/tevent_epoll.c +++ b/lib/tevent/tevent_epoll.c @@ -389,6 +389,12 @@ static int epoll_event_context_init(struct tevent_context *ev) int ret; struct epoll_event_context *epoll_ev; + /* + * We might be called during tevent_re_initialise() + * which means we need to free our old additional_data. + */ + TALLOC_FREE(ev->additional_data); + epoll_ev = talloc_zero(ev, struct epoll_event_context); if (!epoll_ev) return -1; epoll_ev->ev = ev; |