Commit 3d00c86f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the

path after a transfer.
parent 90037b85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}