mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
- More leak fixes
- Free items in the datagram list and pending connections list - Free ConnectionCallInfo and ConnectionReturnInfo - Free the FCB context svn path=/trunk/; revision=40341
This commit is contained in:
parent
15c0d86086
commit
97332db7ed
1 changed files with 2 additions and 0 deletions
|
@ -198,6 +198,8 @@ VOID DestroySocket( PAFD_FCB FCB ) {
|
|||
if( ReturnEarly )
|
||||
return;
|
||||
|
||||
if( FCB->Context )
|
||||
ExFreePool(FCB->Context);
|
||||
if( FCB->Recv.Window )
|
||||
ExFreePool( FCB->Recv.Window );
|
||||
if( FCB->Send.Window )
|
||||
|
|
Loading…
Reference in a new issue