Fix mismatched free call

svn path=/trunk/netsurf/; revision=10420
This commit is contained in:
John Mark Bell 2010-04-17 09:05:15 +00:00
parent 448b0275ae
commit 06145e570d
1 changed files with 1 additions and 1 deletions

View File

@ -1202,7 +1202,7 @@ bool fetch_curl_process_headers(struct curl_fetch_info *f)
fetch_send_callback(FETCH_NOTMODIFIED, fetch_send_callback(FETCH_NOTMODIFIED,
f->fetch_handle, 0, 0, f->fetch_handle, 0, 0,
FETCH_ERROR_NO_ERROR); FETCH_ERROR_NO_ERROR);
curl_free(url_path); free(url_path);
return true; return true;
} }
} }