mirror of
https://github.com/curl/curl.git
synced 2026-07-23 10:27:16 +03:00
Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the
path after a transfer.
This commit is contained in:
parent
90037b85d1
commit
3d00c86f4c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue