mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-11 21:48:50 +01:00
agent: Fix error handling in map_supervised_sockets
* agent/gpg-agent.c (map_supervised_sockets): the file descriptor to close on error is fd, not i. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
This commit is contained in:
parent
1a9c8d78ec
commit
a2127c71db
@ -758,14 +758,14 @@ map_supervised_sockets (gnupg_fd_t *r_fd,
|
|||||||
{
|
{
|
||||||
log_error ("cannot listen on fd %d for %s socket\n",
|
log_error ("cannot listen on fd %d for %s socket\n",
|
||||||
fd, tbl[j].label);
|
fd, tbl[j].label);
|
||||||
close (i);
|
close (fd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
log_error ("cannot listen on more than one %s socket\n",
|
log_error ("cannot listen on more than one %s socket\n",
|
||||||
tbl[j].label);
|
tbl[j].label);
|
||||||
close (i);
|
close (fd);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user