mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-23 20:03:31 +01:00
Fix configure libevent memory leak
Breaks build with externally-specified hardening flags.
This commit is contained in:
parent
50fbede459
commit
74b7bfbe47
@ -527,7 +527,7 @@ struct event_base *event_base_new(void);],
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
{WSADATA d; WSAStartup(0x101,&d); }
|
{WSADATA d; WSAStartup(0x101,&d); }
|
||||||
#endif
|
#endif
|
||||||
event_base_new();
|
event_base_free(event_base_new());
|
||||||
], [--with-libevent-dir], [/opt/libevent])
|
], [--with-libevent-dir], [/opt/libevent])
|
||||||
|
|
||||||
dnl Determine the incantation needed to link libevent.
|
dnl Determine the incantation needed to link libevent.
|
||||||
|
Loading…
Reference in New Issue
Block a user