mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 14:39:46 +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 )
|
if( ReturnEarly )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if( FCB->Context )
|
||||||
|
ExFreePool(FCB->Context);
|
||||||
if( FCB->Recv.Window )
|
if( FCB->Recv.Window )
|
||||||
ExFreePool( FCB->Recv.Window );
|
ExFreePool( FCB->Recv.Window );
|
||||||
if( FCB->Send.Window )
|
if( FCB->Send.Window )
|
||||||
|
|
Loading…
Reference in a new issue