mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
make check-spaces fix
This commit is contained in:
parent
1ef0b2e1a3
commit
c584537a03
@ -918,7 +918,7 @@ sandbox_getaddrinfo(const char *name, struct addrinfo **res)
|
|||||||
*res = NULL;
|
*res = NULL;
|
||||||
|
|
||||||
for (el = sb_addr_info; el; el = el->next) {
|
for (el = sb_addr_info; el; el = el->next) {
|
||||||
if(!strcmp(el->name, name)) {
|
if (!strcmp(el->name, name)) {
|
||||||
*res = (struct addrinfo *)malloc(sizeof(struct addrinfo));
|
*res = (struct addrinfo *)malloc(sizeof(struct addrinfo));
|
||||||
if (!res) {
|
if (!res) {
|
||||||
return -2;
|
return -2;
|
||||||
@ -941,7 +941,7 @@ sandbox_add_addrinfo(const char* name)
|
|||||||
sb_addr_info_t *el = NULL;
|
sb_addr_info_t *el = NULL;
|
||||||
|
|
||||||
el = (sb_addr_info_t*) malloc(sizeof(sb_addr_info_t));
|
el = (sb_addr_info_t*) malloc(sizeof(sb_addr_info_t));
|
||||||
if(!el) {
|
if (!el) {
|
||||||
log_err(LD_BUG,"(Sandbox) failed to allocate addr info!");
|
log_err(LD_BUG,"(Sandbox) failed to allocate addr info!");
|
||||||
ret = -2;
|
ret = -2;
|
||||||
goto out;
|
goto out;
|
||||||
|
Loading…
Reference in New Issue
Block a user