- Fix one more memory leak

- Note: The reason the network stack stops functioning occasionally is because it runs out of resources not because ReactOS crashes which is why I'm tracking down memory leaks

svn path=/branches/aicom-network-fixes/; revision=35114
This commit is contained in:
Cameron Gutman 2008-08-04 21:06:39 +00:00
parent 107921e042
commit 69ef129571

View file

@ -843,6 +843,7 @@ VOID TCPRemoveIRP( PCONNECTION_ENDPOINT Endpoint, PIRP Irp ) {
if( Bucket->Request.RequestContext == Irp ) {
RemoveEntryList( &Bucket->Entry );
PoolFreeBuffer( Bucket );
break;
}
}