diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-08-29 11:33:05 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-08-29 11:33:05 -0400 |
commit | 4144b4552b00c25eba9be7a959aa75c1efbe4a18 (patch) | |
tree | a8d4f9955c3716dc10d8835835d2a3f4dad3fac4 /src/common/compat_libevent.c | |
parent | b45f0f8fb9b11effcd48159c078f09a3fbc04b11 (diff) | |
download | tor-4144b4552b00c25eba9be7a959aa75c1efbe4a18.tar.gz tor-4144b4552b00c25eba9be7a959aa75c1efbe4a18.zip |
Always event_del() connection events before freeing them
Previously, we had done this only in the connection_free() case, but
when we called connection_free_() directly from
connections_free_all(), we didn't free the connections.
Diffstat (limited to 'src/common/compat_libevent.c')
-rw-r--r-- | src/common/compat_libevent.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 200a7c65fb..2a7386df4a 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -144,13 +144,25 @@ tor_evsignal_new(struct event_base * base, int sig, { return tor_event_new(base, sig, EV_SIGNAL|EV_PERSIST, cb, arg); } -/** Work-alike replacement for event_free() on pre-Libevent-2.0 systems. */ +/** Work-alike replacement for event_free() on pre-Libevent-2.0 systems, + * except tolerate tor_event_free(NULL). */ void tor_event_free(struct event *ev) { + if (ev == NULL) + return; event_del(ev); tor_free(ev); } +#else +/* Wrapper for event_free() that tolerates tor_event_free(NULL) */ +void +tor_event_free(struct event *ev) +{ + if (ev == NULL) + return; + event_free(ev); +} #endif /** Global event base for use by the main thread. */ |