Commit 38a968ff authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

netapi32: Fix character count passed to GetUserNameW and GetComputerNameW in init_wksta_tests.

parent e154d3b2
......@@ -48,7 +48,7 @@ static int init_wksta_tests(void)
BOOL rc;
user_name[0] = 0;
dwSize = sizeof(user_name);
dwSize = sizeof(user_name)/sizeof(user_name[0]);
rc=GetUserNameW(user_name, &dwSize);
if (rc==FALSE && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED) {
skip("GetUserNameW is not implemented\n");
......@@ -57,7 +57,7 @@ static int init_wksta_tests(void)
ok(rc, "User Name Retrieved\n");
computer_name[0] = 0;
dwSize = sizeof(computer_name);
dwSize = sizeof(computer_name)/sizeof(computer_name[0]);
ok(GetComputerNameW(computer_name, &dwSize), "Computer Name Retrieved\n");
return 1;
}
......
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