added contingency message to test for sandbox_getaddrinfo

This commit is contained in:
Cristian Toader 2013-09-02 12:16:02 +03:00
parent c584537a03
commit fe6e2733ab
2 changed files with 4 additions and 2 deletions

View File

@ -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; return -1;
} }
@ -958,7 +959,7 @@ sandbox_add_addrinfo(const char* name)
goto out; goto out;
} }
el->name = strdup(name); el->name = tor_strdup(name);
el->next = sb_addr_info; el->next = sb_addr_info;
sb_addr_info = el; sb_addr_info = el;

View File

@ -2640,7 +2640,8 @@ find_flashcard_path(PWCHAR path, size_t size)
#endif #endif
static void static void
init_addrinfo(void) { init_addrinfo(void)
{
char hname[256]; char hname[256];
// host name to sandbox // host name to sandbox