Commit 6886a49c authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

winspool: Fix character count passed to RegQueryValueExW in get_local_monitors.

parent 85fbdfcc
......@@ -763,7 +763,7 @@ static DWORD get_local_monitors(DWORD level, LPBYTE pMonitors, DWORD cbBuf, LPDW
/* Scan all Monitor-Registry-Keys */
while (RegEnumKeyExW(hroot, index, buffer, &len, NULL, NULL, NULL, NULL) == ERROR_SUCCESS) {
TRACE("Monitor_%d: %s\n", numentries, debugstr_w(buffer));
dllsize = sizeof(dllname);
dllsize = sizeof(dllname)/sizeof(dllname[0]);
dllname[0] = '\0';
/* The Monitor must have a Driver-DLL */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment