Commit 0450235d authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

netapi32: Fix off-by-one errors in ACCESS_QueryAdminDisplayInformation and…

netapi32: Fix off-by-one errors in ACCESS_QueryAdminDisplayInformation and ACCESS_QueryGuestDisplayInformation.
parent 2b74e774
...@@ -494,7 +494,7 @@ static void ACCESS_QueryAdminDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD p ...@@ -494,7 +494,7 @@ static void ACCESS_QueryAdminDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD p
PNET_DISPLAY_USER usr; PNET_DISPLAY_USER usr;
/* set up buffer */ /* set up buffer */
name_sz = lstrlenW(sAdminUserName); name_sz = lstrlenW(sAdminUserName) + 1;
comment_sz = 1; comment_sz = 1;
full_name_sz = 1; full_name_sz = 1;
...@@ -533,7 +533,7 @@ static void ACCESS_QueryGuestDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD p ...@@ -533,7 +533,7 @@ static void ACCESS_QueryGuestDisplayInformation(PNET_DISPLAY_USER *buf, PDWORD p
PNET_DISPLAY_USER usr; PNET_DISPLAY_USER usr;
/* set up buffer */ /* set up buffer */
name_sz = lstrlenW(sGuestUserName); name_sz = lstrlenW(sGuestUserName) + 1;
comment_sz = 1; comment_sz = 1;
full_name_sz = 1; full_name_sz = 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