reactos\subsys\system\usetup\infcache.c (line 1156)
authorRobert Dickenson <robd@reactos.org>
Sat, 27 Sep 2003 09:14:15 +0000 (09:14 +0000)
committerRobert Dickenson <robd@reactos.org>
Sat, 27 Sep 2003 09:14:15 +0000 (09:14 +0000)
commit7f69240625888e5562f749b3efd11b8d4590b998
tree2d119998fa1460ec0a83d201059f416b1d2ca7f8
parentb58279d977276fa31137a12f8fc22beecd23774d
reactos\subsys\system\usetup\infcache.c (line 1156)

  CacheSection = Cache->FirstSection;
  while (Section != NULL)

changed to:
  CacheSection = Cache->FirstSection;
//  while (Section != NULL)  // RobD - this looks like an error, variable 'Section' never changes inside the while loop...
  while (CacheSection != NULL)

and also the same in:
reactos\tools\mkhive\infcache.c (line 1007)

Could Royce or Eric confirm this 'fix' please.

svn path=/trunk/; revision=6158
reactos/lib/rosrtl/misc/.cvsignore
reactos/regtests/kmregtests/.cvsignore
reactos/subsys/system/usetup/infcache.c
reactos/tools/mkhive/.cvsignore
reactos/tools/mkhive/infcache.c