X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=loaders.c;h=68b4c613206d0456183d14f19456179c6535fbee;hp=1edf4277f8bfcab826286b197d8760fc5f62f50a;hb=5c2780877ebeda989fa35631c3064e4e100ecdaa;hpb=34e92f5e777f9df0976372455ef772a8788a8152 diff --git a/loaders.c b/loaders.c index 1edf4277..68b4c613 100644 --- a/loaders.c +++ b/loaders.c @@ -8,7 +8,7 @@ * unload files that are no longer in use. * * Copyright : Written by and Copyright (C) 2001-2014 the - * Privoxy team. http://www.privoxy.org/ + * Privoxy team. https://www.privoxy.org/ * * Based on the Internet Junkbuster originally written * by and Copyright (C) 1997 Anonymous Coders and @@ -112,7 +112,13 @@ void free_csp_resources(struct client_state *csp) free_http_request(csp->http); destroy_list(csp->headers); +#ifdef FEATURE_HTTPS_INSPECTION + destroy_list(csp->https_headers); +#endif destroy_list(csp->tags); +#ifdef FEATURE_CLIENT_TAGS + destroy_list(csp->client_tags); +#endif free_current_action(csp->action); }