mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
- Add a temporary hack for the double-freeing issue that memtrack keeps catching
- I would use my branch for this but I am doing some work on it that has broken some things for now svn path=/trunk/; revision=39118
This commit is contained in:
parent
b03a86437a
commit
ac6f717294
1 changed files with 4 additions and 1 deletions
|
@ -310,7 +310,10 @@ VOID IPRemoveInterfaceRoute( PIP_INTERFACE IF ) {
|
|||
NCE = NBLocateNeighbor(&IF->Unicast);
|
||||
if (NCE)
|
||||
{
|
||||
TCPDisposeInterfaceData( IF->TCPContext );
|
||||
if ( IF->TCPContext ) {
|
||||
TCPDisposeInterfaceData( IF->TCPContext );
|
||||
IF->TCPContext = NULL;
|
||||
}
|
||||
|
||||
TI_DbgPrint(DEBUG_IP,("Removing interface Addr %s\n", A2S(&IF->Unicast)));
|
||||
TI_DbgPrint(DEBUG_IP,(" Mask %s\n", A2S(&IF->Netmask)));
|
||||
|
|
Loading…
Reference in a new issue