cgmnlm

colorful gemini line mode browser
git clone https://git.clttr.info/cgmnlm.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 72a763f208a7f1513d363002d1d62d5e1a15ba24
parent 8634e67bd90234dfb357ce09dcaab86718cd6775
Author: Ondřej Fiala <temp.xanomes@volny.cz>
Date:   Sat,  5 Feb 2022 22:43:43 +0100

gmnlm: fix memory leak in do_requests

Diffstat:
Msrc/gmnlm.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/gmnlm.c b/src/gmnlm.c @@ -597,6 +597,7 @@ out: if (client_cert.key) { free(client_cert.key); } + free(path_fmt); free(scheme); free(host); return res;