Commit 3769d575 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

secur32: Pass correct buffer length to RegQueryValueExW().

parent 01080e67
...@@ -575,7 +575,7 @@ static void SECUR32_initializeProviders(void) ...@@ -575,7 +575,7 @@ static void SECUR32_initializeProviders(void)
if (apiRet == ERROR_SUCCESS) if (apiRet == ERROR_SUCCESS)
{ {
WCHAR securityPkgNames[MAX_PATH]; /* arbitrary len */ WCHAR securityPkgNames[MAX_PATH]; /* arbitrary len */
DWORD size = sizeof(securityPkgNames) / sizeof(WCHAR), type; DWORD size = sizeof(securityPkgNames), type;
apiRet = RegQueryValueExW(key, securityProvidersW, NULL, &type, apiRet = RegQueryValueExW(key, securityProvidersW, NULL, &type,
(PBYTE)securityPkgNames, &size); (PBYTE)securityPkgNames, &size);
......
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