From: Daniel Stenberg Date: Thu, 10 Jun 2004 07:17:28 +0000 (+0000) Subject: Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the X-Git-Tag: pre-aifix~82 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d00c86f4ca2439a2748fa61c591fb69b36c010d;p=curl Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the path after a transfer. --- diff --git a/lib/file.c b/lib/file.c index e36631426..4a064a065 100644 --- a/lib/file.c +++ b/lib/file.c @@ -175,7 +175,7 @@ CURLcode Curl_file_done(struct connectdata *conn, { struct FILEPROTO *file = conn->proto.file; (void)status; /* not used */ - Curl_safefree(file->path); + Curl_safefree(file->freepath); return CURLE_OK; }