Trivial mod to remove obsolete comment about bugfix. Thanks Eric for comfirming.

Removed line:
//  while (Section != NULL)  // RobD - this looks like an error, Section variable never changes inside the while loop...

svn path=/trunk/; revision=6334
This commit is contained in:
Robert Dickenson 2003-10-16 08:39:28 +00:00
parent 9ce7e4fa9d
commit 2e841b972e
2 changed files with 2 additions and 4 deletions

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: infcache.c,v 1.6 2003/09/27 09:14:15 robd Exp $
/* $Id: infcache.c,v 1.7 2003/10/16 08:39:28 robd Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/infcache.c
@ -1153,7 +1153,6 @@ InfFindFirstLine (HINF InfHandle,
/* Iterate through list of sections */
CacheSection = Cache->FirstSection;
// while (Section != NULL) // RobD - this looks like an error, Section variable never changes inside the while loop...
while (CacheSection != NULL)
{
DPRINT("Comparing '%S' and '%S'\n", CacheSection->Name, Section);

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: infcache.c,v 1.6 2003/09/27 09:14:15 robd Exp $
/* $Id: infcache.c,v 1.7 2003/10/16 08:39:28 robd Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS hive maker
* FILE: tools/mkhive/infcache.c
@ -1004,7 +1004,6 @@ InfFindFirstLine (HINF InfHandle,
/* Iterate through list of sections */
CacheSection = Cache->FirstSection;
// while (Section != NULL) // RobD - this looks like an error, Section variable never changes inside the while loop...
while (CacheSection != NULL)
{
DPRINT("Comparing '%s' and '%s'\n", CacheSection->Name, Section);