From 8a08ae25c341f2c8785f4ce1efda12d5cb89ad4d Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 19 Sep 2018 12:56:35 +0000 Subject: [PATCH] Fix: Free memory used for header names --- src/auth_url.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/auth_url.c b/src/auth_url.c index 04174054..56c5c17f 100644 --- a/src/auth_url.c +++ b/src/auth_url.c @@ -136,6 +136,8 @@ static void auth_url_clear(auth_t *self) free(url->removeaction); free(url->auth_header); free(url->timelimit_header); + free(url->header_auth); + free(url->header_timelimit); free(url->userpwd); free(url); }