msi: Fixed a memory leak in an error case (Coverity).

This commit is contained in:
Marcus Meissner 2013-10-05 12:59:14 +02:00 committed by Alexandre Julliard
parent 919e8236ee
commit 52c9b9f2b3
1 changed files with 1 additions and 0 deletions

View File

@ -1077,6 +1077,7 @@ static UINT msi_load_summary_properties( MSIPACKAGE *package )
if (rc != ERROR_SUCCESS)
{
WARN("Unable to query rev number: %d\n", rc);
msi_free( package_code );
goto done;
}