diff options
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 3112de3ac..199958bb0 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -412,8 +412,9 @@ int dnsworker_main(void *data) { close(fdarray[0]); /* this is the side of the socketpair the parent uses */ fd = fdarray[1]; /* this side is ours */ +#ifndef MS_WINDOWS connection_free_all(); /* so the child doesn't hold the parent's fd's open */ -/* XXX probably don't close all the fd's on MS_WINDOWS? */ +#endif for(;;) { |