From 43736de9961a500f803c947c4ca1c23c5f3d0455 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Wed, 8 Oct 2003 20:49:26 +0000 Subject: [project @ 2003-10-08 20:49:26 by bursa] Plug memory leaks. svn path=/import/netsurf/; revision=353 --- content/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/fetch.c') diff --git a/content/fetch.c b/content/fetch.c index 4086b2ff5..2823d6dfa 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -502,7 +502,7 @@ bool fetch_process_headers(struct fetch *f) char *url_path; url_path = curl_unescape(f->url + 8, (int) strlen(f->url) - 8); type = fetch_filetype(url_path); - free(url_path); + curl_free(url_path); } } -- cgit v1.2.3