mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
-Fix review comment for use-after-free when failing to send UDP out.
This commit is contained in:
parent
888eb224a6
commit
a60bbd12ed
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
31 January 2022: George
|
||||||
|
- Fix review comment for use-after-free when failing to send UDP out.
|
||||||
|
|
||||||
29 January 2022: George
|
29 January 2022: George
|
||||||
- Fix tls-* and ssl-* documented alternate syntax to also be available
|
- Fix tls-* and ssl-* documented alternate syntax to also be available
|
||||||
through remote-control and unbound-checkconf.
|
through remote-control and unbound-checkconf.
|
||||||
|
|
|
||||||
|
|
@ -1384,10 +1384,11 @@ outnet_send_wait_udp(struct outside_network* outnet)
|
||||||
NETEVENT_CLOSED, NULL);
|
NETEVENT_CLOSED, NULL);
|
||||||
}
|
}
|
||||||
pending_delete(outnet, pend);
|
pending_delete(outnet, pend);
|
||||||
}
|
} else {
|
||||||
pend->sq->busy = 0;
|
pend->sq->busy = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
outnet_udp_cb(struct comm_point* c, void* arg, int error,
|
outnet_udp_cb(struct comm_point* c, void* arg, int error,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue