mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[WS2_32_NEW] Fix ProtocolInfo allocation size. By Peter Hater. CORE-10440
svn path=/trunk/; revision=69805
This commit is contained in:
@@ -123,7 +123,7 @@ WsThreadGetProtoBuffer(IN PWSTHREAD Thread)
|
||||
if (!Thread->ProtocolInfo)
|
||||
{
|
||||
/* We don't have a buffer; allocate it */
|
||||
Thread->ProtocolInfo = HeapAlloc(WsSockHeap, 0, sizeof(PWSPROTO_BUFFER));
|
||||
Thread->ProtocolInfo = HeapAlloc(WsSockHeap, 0, sizeof(WSPROTO_BUFFER));
|
||||
}
|
||||
|
||||
/* Return it */
|
||||
|
||||
Reference in New Issue
Block a user