mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix Useless memset() in validator, reported by X41 D-Sec.
This commit is contained in:
parent
d63ec2dfcb
commit
fcd9b34bb5
2 changed files with 1 additions and 1 deletions
|
|
@ -32,6 +32,7 @@
|
|||
- Fixed Compat Code Diverging from Upstream, reported by X41 D-Sec.
|
||||
- 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.
|
||||
|
||||
19 November 2019: Wouter
|
||||
- Fix CVE-2019-18934, shell execution in ipsecmod.
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@ void autr_global_delete(struct autr_global_data* global)
|
|||
if(!global)
|
||||
return;
|
||||
/* elements deleted by parent */
|
||||
memset(global, 0, sizeof(*global));
|
||||
free(global);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue