From 06145e570dbbf836dd9d4a53a0a736b70ece0458 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 17 Apr 2010 09:05:15 +0000 Subject: Fix mismatched free call svn path=/trunk/netsurf/; revision=10420 --- content/fetchers/fetch_curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/fetchers') diff --git a/content/fetchers/fetch_curl.c b/content/fetchers/fetch_curl.c index aad0b603c..7374bdb36 100644 --- a/content/fetchers/fetch_curl.c +++ b/content/fetchers/fetch_curl.c @@ -1202,7 +1202,7 @@ bool fetch_curl_process_headers(struct curl_fetch_info *f) fetch_send_callback(FETCH_NOTMODIFIED, f->fetch_handle, 0, 0, FETCH_ERROR_NO_ERROR); - curl_free(url_path); + free(url_path); return true; } } -- cgit v1.2.3