Commit c5ef45e5 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: A progid without a class is not an error.

parent d59c9906
...@@ -1072,7 +1072,7 @@ static UINT register_progid( const MSIPROGID* progid ) ...@@ -1072,7 +1072,7 @@ static UINT register_progid( const MSIPROGID* progid )
if (clsid) if (clsid)
msi_reg_set_subkey_val( hkey, szCLSID, NULL, clsid ); msi_reg_set_subkey_val( hkey, szCLSID, NULL, clsid );
else else
ERR("%s has no class\n", debugstr_w( progid->ProgID ) ); TRACE("%s has no class\n", debugstr_w( progid->ProgID ) );
if (progid->Description) if (progid->Description)
msi_reg_set_val_str( hkey, NULL, progid->Description ); msi_reg_set_val_str( hkey, NULL, progid->Description );
......
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