From: Nick Mathewson Date: Fri, 2 Dec 2011 21:21:50 +0000 (-0500) Subject: Init conn->addr to "unspec" on cpuworker connections X-Git-Tag: tor-0.2.3.9-alpha~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5303918091d832d2986b113d60a6ba1ca328af1c;p=thirdparty%2Ftor.git Init conn->addr to "unspec" on cpuworker connections Fixes bug 4532 reported by "troll_un" --- diff --git a/changes/bug4532 b/changes/bug4532 new file mode 100644 index 0000000000..6ce48816a0 --- /dev/null +++ b/changes/bug4532 @@ -0,0 +1,3 @@ + o Minor bugfixes: + - Initialize conn->addr to a vaild state in spawn_cpuworker. Fixes bug + 4532; found by troll_un. diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 914003790a..e4460c5981 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -347,6 +347,7 @@ spawn_cpuworker(void) /* set up conn so it's got all the data we need to remember */ conn->s = fd; conn->address = tor_strdup("localhost"); + tor_addr_make_unspec(&conn->addr); if (connection_add(conn) < 0) { /* no space, forget it */ log_warn(LD_NET,"connection_add for cpuworker failed. Giving up.");