mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[MSI] Allow to pass product key validation check
CORE-14710 CORE-15864
This commit is contained in:
parent
4785291ff3
commit
8e05f5509c
1 changed files with 4 additions and 0 deletions
|
@ -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 );
|
||||
|
|
Loading…
Reference in a new issue