mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed warning, uninitialized length. Sorry, I did this in a different way
and missed one use of NewBufferLen. Not sure why I don't see the 'might be used uninitialized' warning. svn path=/trunk/; revision=14585
This commit is contained in:
parent
9166ff8f34
commit
d34cc750d8
1 changed files with 1 additions and 2 deletions
|
@ -50,7 +50,6 @@ PAFD_WSABUF LockBuffers( PAFD_WSABUF Buf, UINT Count,
|
|||
UINT Size = sizeof(AFD_WSABUF) * (Count + Lock);
|
||||
PAFD_WSABUF NewBuf = ExAllocatePool( PagedPool, Size * 2 );
|
||||
PMDL NewMdl;
|
||||
INT NewBufferLen;
|
||||
|
||||
AFD_DbgPrint(MID_TRACE,("Called\n"));
|
||||
|
||||
|
@ -61,7 +60,7 @@ PAFD_WSABUF LockBuffers( PAFD_WSABUF Buf, UINT Count,
|
|||
RtlCopyMemory( NewBuf, Buf, sizeof(AFD_WSABUF) * Count );
|
||||
if( LockAddress ) {
|
||||
NewBuf[Count].buf = AddressBuf;
|
||||
NewBuf[Count].len = NewBufferLen;
|
||||
NewBuf[Count].len = *AddressLen;
|
||||
Count++;
|
||||
NewBuf[Count].buf = (PVOID)AddressLen;
|
||||
NewBuf[Count].len = sizeof(*AddressLen);
|
||||
|
|
Loading…
Reference in a new issue