| Message ID | 20251028203156.11697-1-gert@greenie.muc.de |
|---|---|
| State | New |
| Headers | show |
| Series | [Openvpn-devel,v1] zeroize struct image in packet_id_persist_save() before writing to disk | expand |
Not the most critical path, but "initialize data structures before using"
is considered good practice :-) - BB is also happy with it.
Patch has been applied to the master branch.
commit c58b6e73c3508b40b3d2f26eebfc3aa4df53e524
Author: Gert Doering
Date: Tue Oct 28 21:31:50 2025 +0100
zeroize struct image in packet_id_persist_save() before writing to disk
Signed-off-by: Gert Doering <gert@greenie.muc.de>
Acked-by: Frank Lichtenheld <frank@lichtenheld.com>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1323
Message-Id: <20251028203156.11697-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg33983.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
diff --git a/src/openvpn/packet_id.c b/src/openvpn/packet_id.c index 880eee1..08d9d9b 100644 --- a/src/openvpn/packet_id.c +++ b/src/openvpn/packet_id.c @@ -511,6 +511,7 @@ && (p->time != p->time_last_written || p->id != p->id_last_written)) { struct packet_id_persist_file_image image; + CLEAR(image); ssize_t n; off_t seek_ret; struct gc_arena gc = gc_new();