From 50e3e3e72f97c32cf868efb580ffed4772e61b2d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 21 Mar 2018 08:15:15 +0000 Subject: Remove EVENT_* variables from environment after initializing libevent so they are not carried into child processes; from Henry Qin. --- osdep-darwin.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'osdep-darwin.c') diff --git a/osdep-darwin.c b/osdep-darwin.c index 9956ab45..5d69cdda 100644 --- a/osdep-darwin.c +++ b/osdep-darwin.c @@ -88,11 +88,17 @@ osdep_get_cwd(int fd) struct event_base * osdep_event_init(void) { + struct event_base *base; + /* * On OS X, kqueue and poll are both completely broken and don't * work on anything except socket file descriptors (yes, really). */ setenv("EVENT_NOKQUEUE", "1", 1); setenv("EVENT_NOPOLL", "1", 1); - return (event_init()); + + base = event_init(); + unsetenv("EVENT_NOKQUEUE"); + unsetenv("EVENT_NOPOLL"); + return (base); } -- cgit