mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Fix copyright message
- Rob Shearman <[email protected]> shell32: Fix incorrect character count passed into RegEnumKeyExW in CreateDesktopEnumList. svn path=/trunk/; revision=40571
This commit is contained in:
@@ -1 +1 @@
|
||||
const char * const SHELL_Authors[] = { "Copyright 1993-2007 WINE team", "Copyright 1998-2007 ReactOS Team", 0 };
|
||||
const char * const SHELL_Authors[] = { "Copyright 1993-2009 WINE team", "Copyright 1998-2009 ReactOS Team", 0 };
|
||||
|
||||
@@ -313,7 +313,7 @@ static BOOL CreateDesktopEnumList(IEnumIDList *list, DWORD dwFlags)
|
||||
DWORD size;
|
||||
LONG r;
|
||||
|
||||
size = sizeof (iid);
|
||||
size = sizeof (iid) / sizeof (iid[0]);
|
||||
r = RegEnumKeyExW(hkey, i, iid, &size, 0, NULL, NULL, NULL);
|
||||
if (ERROR_SUCCESS == r)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user