mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +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:
parent
0731e09013
commit
00a97e886c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue