[ADVAPI32]

* Update ADVAPI_IsLocalComputer().
CORE-8540

svn path=/trunk/; revision=64981
This commit is contained in:
Amine Khaldi 2014-10-25 14:02:23 +00:00
parent 21ef917d3f
commit 93ecff8e68

View file

@ -325,12 +325,12 @@ BOOL ADVAPI_IsLocalComputer(LPCWSTR ServerName)
if (!ServerName || !ServerName[0])
return TRUE;
buf = HeapAlloc(GetProcessHeap(), 0, dwSize * sizeof(WCHAR));
buf = heap_alloc(dwSize * sizeof(WCHAR));
Result = GetComputerNameW(buf, &dwSize);
if (Result && (ServerName[0] == '\\') && (ServerName[1] == '\\'))
ServerName += 2;
Result = Result && !lstrcmpW(ServerName, buf);
HeapFree(GetProcessHeap(), 0, buf);
heap_free(buf);
return Result;
}