From: Daniel Stenberg Date: Mon, 13 Nov 2000 07:51:23 +0000 (+0000) Subject: Chris Faherty fixed a free-twice problem X-Git-Tag: curl-7_5~157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=460aa295e016a2e131cf79cc52a8e84ac0cacfda;p=curl Chris Faherty fixed a free-twice problem --- diff --git a/lib/file.c b/lib/file.c index 46827f0a2..26d31914c 100644 --- a/lib/file.c +++ b/lib/file.c @@ -184,7 +184,5 @@ CURLcode file(struct connectdata *conn) close(fd); - free(actual_path); - return res; }