From 3e65cb70a115c1e1197c9a806cd81a7a5cdaa74c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Fri, 22 May 2009 09:05:03 +0000 Subject: [PATCH] * free header vars from auth --- webcit/auth.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/webcit/auth.c b/webcit/auth.c index 3704061f7..2e317b20d 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -977,7 +977,15 @@ void Header_HandleCookie(StrBuf *Line, ParsedHttpHdrs *hdr) hdr->got_auth = AUTH_COOKIE; } - +void +HttpDestroyModule_AUTH +(ParsedHttpHdrs *httpreq) +{ + FreeStrBuf(&httpreq->c_username); + FreeStrBuf(&httpreq->c_password); + FreeStrBuf(&httpreq->c_roomname); + FreeStrBuf(&httpreq->c_language); +} void InitModule_AUTH -- 2.30.2