Commit d762b284 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

wininet: Added missing return (Coverity).

parent 60faef8e
...@@ -3098,6 +3098,7 @@ BOOL WINAPI CommitUrlCacheEntryW(LPCWSTR lpszUrlName, LPCWSTR lpszLocalFileName, ...@@ -3098,6 +3098,7 @@ BOOL WINAPI CommitUrlCacheEntryW(LPCWSTR lpszUrlName, LPCWSTR lpszLocalFileName,
heap_free(url); heap_free(url);
heap_free(header_info); heap_free(header_info);
heap_free(file_ext); heap_free(file_ext);
return FALSE;
} }
ret = urlcache_entry_commit(url, lpszLocalFileName, ExpireTime, LastModifiedTime, ret = urlcache_entry_commit(url, lpszLocalFileName, ExpireTime, LastModifiedTime,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment