Commit f5dddd55 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Fix a memory leak.

parent aaa0dc04
...@@ -514,6 +514,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, ...@@ -514,6 +514,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
/* found the source */ /* found the source */
if (dwIndex > 0 && current_index != dwIndex) if (dwIndex > 0 && current_index != dwIndex)
FIXME("Need to reorder the sources!\n"); FIXME("Need to reorder the sources!\n");
msi_free( source_struct.path );
} }
else else
{ {
......
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