commit 9a88c0cd32df53116a6bbb6b961650943755061c Author: Nick Mathewson nickm@torproject.org Date: Fri Nov 25 19:09:48 2011 -0500
use event_free() wrapper; fix bug 4582 --- src/common/compat_libevent.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index c3a4746..3a754be 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -573,7 +573,7 @@ run_runnable_cb(evutil_socket_t s, short what, void *arg) void *cb_arg = r->arg; (void)what; (void)s; - event_free(r->ev); + tor_event_free(r->ev); tor_free(r);
cb(cb_arg);