wininet: Free the mem unconditionally to prevent a potential leak (Smatch).

This commit is contained in:
Michael Stefaniuc 2009-12-03 00:41:55 +01:00 committed by Alexandre Julliard
parent c848e4ee86
commit b8a087d6a8
1 changed files with 1 additions and 1 deletions

View File

@ -1397,8 +1397,8 @@ HINTERNET FTP_FtpOpenFileW(ftp_session_t *lpwfs,
HeapFree(GetProcessHeap(), 0, lpwh->cache_file);
lpwh->cache_file = NULL;
}
HeapFree(GetProcessHeap(), 0, url);
}
HeapFree(GetProcessHeap(), 0, url);
}
HeapFree(GetProcessHeap(), 0, uc.lpszUrlPath);
}