- Fix Useless memset() in validator, reported by X41 D-Sec.

This commit is contained in:
W.C.A. Wijngaards 2019-11-20 14:02:58 +01:00
parent d63ec2dfcb
commit fcd9b34bb5
2 changed files with 1 additions and 1 deletions

View file

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

View file

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