From: Cristian Toader Date: Mon, 2 Sep 2013 09:16:02 +0000 (+0300) Subject: added contingency message to test for sandbox_getaddrinfo X-Git-Tag: tor-0.2.5.1-alpha~39^2~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe6e2733ab1e75e0b56741fa06094b257b3695b8;p=thirdparty%2Ftor.git added contingency message to test for sandbox_getaddrinfo --- diff --git a/src/common/sandbox.c b/src/common/sandbox.c index a4919121cf..84d21833bb 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -930,6 +930,7 @@ sandbox_getaddrinfo(const char *name, struct addrinfo **res) } } + log_err(LD_BUG,"(Sandbox) failed to get address %s!", name); return -1; } @@ -958,7 +959,7 @@ sandbox_add_addrinfo(const char* name) goto out; } - el->name = strdup(name); + el->name = tor_strdup(name); el->next = sb_addr_info; sb_addr_info = el; diff --git a/src/or/main.c b/src/or/main.c index af05f0b71a..5ab49365b0 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2640,7 +2640,8 @@ find_flashcard_path(PWCHAR path, size_t size) #endif static void -init_addrinfo(void) { +init_addrinfo(void) +{ char hname[256]; // host name to sandbox