Do proper initialisation of traverse and traversec. - geomyidae - A small C-based gopherd.
(HTM) git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/geomyidae/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
(DIR) commit 2deefd40cbc13516f07e503f8bf337a66dd54da9
(DIR) parent 51959f2e295b12a6549278709954f6630655602a
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Wed, 14 Aug 2024 16:22:44 +0200
Do proper initialisation of traverse and traversec.
This caused in TLS mode that traversec was polluted.
Diffstat:
M main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/main.c b/main.c
@@ -172,7 +172,8 @@ handlerequest(int sock, char *req, int rlen, char *base, char *ohost,
memset(recvc, 0, sizeof(recvc));
memset(args, 0, sizeof(args));
memset(argsc, 0, sizeof(argsc));
- memset(traverse, 0, sizeof(argsc));
+ memset(traverse, 0, sizeof(traverse));
+ memset(traversec, 0, sizeof(traversec));
maxrecv = sizeof(recvb) - 1;
if (rlen > maxrecv || rlen < 0)