From: Nick Mathewson Date: Wed, 7 Dec 2011 00:49:20 +0000 (-0500) Subject: Revert "use event_free() wrapper; fix bug 4582" X-Git-Tag: tor-0.2.3.9-alpha~7^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e83e720c8bf1f97c3df2ed272296f6dbcc4b8c24;p=thirdparty%2Ftor.git Revert "use event_free() wrapper; fix bug 4582" This reverts commit 9a88c0cd32df53116a6bbb6b961650943755061c. --- diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 3a754bef70..c3a4746b37 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; - tor_event_free(r->ev); + event_free(r->ev); tor_free(r); cb(cb_arg);