mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix for #411: Depth protect for crash on deleted element timeout.
This commit is contained in:
parent
fe324823f8
commit
7396eff7af
2 changed files with 4 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
|||
7 April 2021: Wouter
|
||||
- Fix for #411: Depth protect for crash on deleted element timeout.
|
||||
|
||||
1 April 2021: Wouter
|
||||
- Merge #460 from orbea: build: Link with the libtool archive.
|
||||
- Fix to stop IPv6 PMTU discovery.
|
||||
|
|
|
|||
|
|
@ -721,7 +721,7 @@ static void
|
|||
waiting_tcp_callback(struct waiting_tcp* w, struct comm_point* c, int error,
|
||||
struct comm_reply* reply_info)
|
||||
{
|
||||
if(w->cb) {
|
||||
if(w && w->cb) {
|
||||
fptr_ok(fptr_whitelist_pending_tcp(w->cb));
|
||||
(void)(*w->cb)(c, w->cb_arg, error, reply_info);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue