mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix Unrequired Checks, reported by X41 D-Sec.
This commit is contained in:
parent
fcd9b34bb5
commit
3907876eac
3 changed files with 3 additions and 2 deletions
|
|
@ -33,6 +33,7 @@
|
|||
- Fix compile with --enable-alloc-checks, reported by X41 D-Sec.
|
||||
- Fix Terminating Quotes not Written, reported by X41 D-Sec.
|
||||
- Fix Useless memset() in validator, reported by X41 D-Sec.
|
||||
- Fix Unrequired Checks, reported by X41 D-Sec.
|
||||
|
||||
19 November 2019: Wouter
|
||||
- Fix CVE-2019-18934, shell execution in ipsecmod.
|
||||
|
|
|
|||
|
|
@ -3191,7 +3191,7 @@ comm_point_drop_reply(struct comm_reply* repinfo)
|
|||
{
|
||||
if(!repinfo)
|
||||
return;
|
||||
log_assert(repinfo && repinfo->c);
|
||||
log_assert(repinfo->c);
|
||||
log_assert(repinfo->c->type != comm_tcp_accept);
|
||||
if(repinfo->c->type == comm_udp)
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -2261,7 +2261,7 @@ autr_debug_print_ta(struct autr_ta* ta)
|
|||
log_info("out of memory in debug_print_ta");
|
||||
return;
|
||||
}
|
||||
if(str && str[0]) str[strlen(str)-1]=0; /* remove newline */
|
||||
if(str[0]) str[strlen(str)-1]=0; /* remove newline */
|
||||
ctime_r(&ta->last_change, buf);
|
||||
if(buf[0]) buf[strlen(buf)-1]=0; /* remove newline */
|
||||
log_info("[%s] %s ;;state:%d ;;pending_count:%d%s%s last:%s",
|
||||
|
|
|
|||
Loading…
Reference in a new issue