From: Nick Mathewson Date: Sat, 26 Nov 2011 00:09:48 +0000 (-0500) Subject: use event_free() wrapper; fix bug 4582 X-Git-Tag: tor-0.2.3.9-alpha~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a88c0cd32df53116a6bbb6b961650943755061c;p=thirdparty%2Ftor.git use event_free() wrapper; fix bug 4582 --- diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index c3a4746b37..3a754bef70 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);