summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-04-17 09:05:15 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-04-17 09:05:15 +0000
commit06145e570dbbf836dd9d4a53a0a736b70ece0458 (patch)
tree4e9965e692f15849ae3820969aa50c9215e97025 /content/fetchers
parent448b0275ae4d62b31f64e3c6399d4fb5a045315c (diff)
downloadnetsurf-06145e570dbbf836dd9d4a53a0a736b70ece0458.tar.gz
netsurf-06145e570dbbf836dd9d4a53a0a736b70ece0458.tar.bz2
Fix mismatched free call
svn path=/trunk/netsurf/; revision=10420
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/fetch_curl.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}