Commit 33c3bdeb authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: A progid who is its own parent cannot have a clsid.

parent b779aac8
......@@ -971,6 +971,8 @@ static LPCWSTR get_clsid_of_progid( const MSIPROGID *progid )
{
if (progid->Class)
return progid->Class->clsid;
if (progid->Parent == progid)
break;
progid = progid->Parent;
}
return NULL;
......
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