- fix a bug introduced by the progid list conversion

- make a fixme a little less alarmist
This commit is contained in:
Mike McCormack 2005-09-08 11:03:55 +00:00 committed by Alexandre Julliard
parent 41a04cc0de
commit 6db7f82539
1 changed files with 3 additions and 3 deletions

View File

@ -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;