mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[WS2_32]
- Fix wrong ServLength in getnameinfo, again, since it got lost in the ws2_32_new work. CID 716150 CORE-11214 svn path=/trunk/; revision=73839
This commit is contained in:
parent
64c9bc0eba
commit
c60757b725
1 changed files with 1 additions and 1 deletions
|
@ -1028,7 +1028,7 @@ getnameinfo(const struct sockaddr FAR *sa,
|
|||
{
|
||||
/* Setup the data for it */
|
||||
ServiceString = ServiceBuffer;
|
||||
ServLength = sizeof(ServiceBuffer) - 1;
|
||||
ServLength = sizeof(ServiceBuffer) / sizeof(WCHAR);
|
||||
}
|
||||
|
||||
/* Now call the unicode function */
|
||||
|
|
Loading…
Reference in a new issue