ntdsapi: Fix null termination of buffer.
Signed-off-by: Alasdair Sinclair <alasdairsinc@gmail.com>
This commit is contained in:
parent
9eb8aa1ebb
commit
ac7069e09b
|
@ -225,7 +225,7 @@ DWORD WINAPI DsClientMakeSpnForTargetServerW(LPCWSTR class, LPCWSTR name, DWORD
|
||||||
p = buf + strlenW(class);
|
p = buf + strlenW(class);
|
||||||
*p++ = '/';
|
*p++ = '/';
|
||||||
memcpy(p, name, strlenW(name) * sizeof(WCHAR));
|
memcpy(p, name, strlenW(name) * sizeof(WCHAR));
|
||||||
buf[len] = 0;
|
buf[len - 1] = 0;
|
||||||
|
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue