From: Wilfried Göesgens Date: Fri, 22 May 2009 09:05:03 +0000 (+0000) Subject: * free header vars from auth X-Git-Tag: v7.86~1141 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=3e65cb70a115c1e1197c9a806cd81a7a5cdaa74c * free header vars from auth --- 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