mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
don't read the 0000 key.
stops the annoying 'Missing NetCfgInstanceId Entry' message box when running in Windows. svn path=/trunk/; revision=23598
This commit is contained in:
@@ -94,7 +94,7 @@ EnumRegKeys(ENUMREGKEYCALLBACK *pCallback,PVOID pCookie,HKEY hBaseKey,TCHAR *tps
|
||||
return;
|
||||
}
|
||||
|
||||
for(i=0;;i++)
|
||||
for(i=1;;i++)
|
||||
{
|
||||
TCHAR pszNewPath[MAX_PATH];
|
||||
ret = RegEnumKeyEx(hKey,i,tpszName,&dwNameLen,NULL,NULL,NULL,NULL);
|
||||
|
||||
Reference in New Issue
Block a user