[MSI] Allow to pass product key validation check

CORE-14710 CORE-15864
This commit is contained in:
Stanislav Motylkov 2019-03-18 01:14:46 +03:00 committed by Hermès BÉLUSCA - MAÏTO
parent 4785291ff3
commit 8e05f5509c

View file

@ -7448,7 +7448,11 @@ UINT msi_validate_product_id( MSIPACKAGE *package )
if (key && template)
{
FIXME( "partial stub: template %s key %s\n", debugstr_w(template), debugstr_w(key) );
#ifdef __REACTOS__
WARN("Product key validation HACK, see CORE-14710\n");
#else
r = msi_set_property( package->db, szProductID, key, -1 );
#endif
}
msi_free( template );
msi_free( key );