Commit 5497a41e authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msi: Fix a leak on error path (Coverity).

parent 0bcf4a5b
...@@ -1153,7 +1153,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, ...@@ -1153,7 +1153,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
list_init(&sourcelist); list_init(&sourcelist);
rc = fill_source_list(&sourcelist, typekey, &count); rc = fill_source_list(&sourcelist, typekey, &count);
if (rc != ERROR_NO_MORE_ITEMS) if (rc != ERROR_NO_MORE_ITEMS)
return rc; goto done;
size = (lstrlenW(source) + 1) * sizeof(WCHAR); size = (lstrlenW(source) + 1) * sizeof(WCHAR);
......
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