mirror of
https://github.com/hufrea/byedpi.git
synced 2024-11-20 12:25:05 +00:00
missed fd closing
This commit is contained in:
parent
e3cfd9e9d3
commit
8e8bd2d527
2
proxy.c
2
proxy.c
@ -330,6 +330,7 @@ int create_conn(struct poolhd *pool,
|
||||
}
|
||||
if (params.protect_path
|
||||
&& protect(sfd, params.protect_path) < 0) {
|
||||
close(sfd);
|
||||
return -1;
|
||||
}
|
||||
if (addr.sa.sa_family == AF_INET6) {
|
||||
@ -409,6 +410,7 @@ int udp_associate(struct poolhd *pool,
|
||||
}
|
||||
if (params.protect_path
|
||||
&& protect(ufd, params.protect_path) < 0) {
|
||||
close(ufd);
|
||||
return -1;
|
||||
}
|
||||
if (params.baddr.sin6_family == AF_INET6) {
|
||||
|
Loading…
Reference in New Issue
Block a user