mirror of
https://github.com/reactos/reactos.git
synced 2026-09-12 20:59:19 +08:00
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