- Fix another memory leak

svn path=/branches/aicom-network-fixes/; revision=35289
This commit is contained in:
Cameron Gutman 2008-08-12 15:27:15 +00:00
parent f0d01cf5aa
commit 5d9c71ed13

View file

@ -207,6 +207,8 @@ VOID DestroySocket( PAFD_FCB FCB ) {
ExFreePool( FCB->AddressFrom );
if( FCB->LocalAddress )
ExFreePool( FCB->LocalAddress );
if( FCB->RemoteAddress )
ExFreePool( FCB->RemoteAddress );
ExFreePool(FCB->TdiDeviceName.Buffer);