- Fix for #411: Depth protect for crash on deleted element timeout.

This commit is contained in:
W.C.A. Wijngaards 2021-04-08 13:47:06 +02:00
parent fe324823f8
commit 7396eff7af
2 changed files with 4 additions and 1 deletions

View file

@ -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.

View file

@ -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);
}