From 3d00c86f4ca2439a2748fa61c591fb69b36c010d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 10 Jun 2004 07:17:28 +0000 Subject: Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the path after a transfer. --- lib/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/file.c') 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; } -- cgit v1.2.3