advapi32: Nul-terminate the domain string in LookupAccountNameW.

This commit is contained in:
Robert Shearman 2006-06-12 16:36:54 +01:00 committed by Alexandre Julliard
parent b5f7e818a1
commit ddd84f4f28
1 changed files with 1 additions and 1 deletions

View File

@ -1857,7 +1857,7 @@ BOOL WINAPI LookupAccountNameW( LPCWSTR lpSystemName, LPCWSTR lpAccountName, PSI
SID_IDENTIFIER_AUTHORITY identifierAuthority = {SECURITY_NT_AUTHORITY};
BOOL ret;
PSID pSid;
static const WCHAR dm[] = {'D','O','M','A','I','N'};
static const WCHAR dm[] = {'D','O','M','A','I','N',0};
FIXME("%s %s %p %p %p %p %p - stub\n", debugstr_w(lpSystemName), debugstr_w(lpAccountName),
Sid, cbSid, ReferencedDomainName, cchReferencedDomainName, peUse);