- fix a bug introduced by the progid list conversion
- make a fixme a little less alarmist
This commit is contained in:
parent
41a04cc0de
commit
6db7f82539
|
@ -181,13 +181,13 @@ static MSIPROGID *load_progid( MSIPACKAGE* package, MSIRECORD *row )
|
|||
{
|
||||
MSIPROGID *parent = progid->Parent;
|
||||
|
||||
while (parent->Parent && parent->Parent != progid)
|
||||
while (parent->Parent && parent->Parent != parent)
|
||||
parent = parent->Parent;
|
||||
|
||||
FIXME("BAD BAD need to determing if we are really the CurVer\n");
|
||||
FIXME("need to determing if we are really the CurVer\n");
|
||||
|
||||
progid->CurVer = parent;
|
||||
progid->VersionInd = progid;
|
||||
parent->VersionInd = progid;
|
||||
}
|
||||
|
||||
return progid;
|
||||
|
|
Loading…
Reference in New Issue