mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
Correct silly bugcheck when a packet will not be routed. Not exposed before
because of false positives on loopback adapter. We need to expect NCE to be NULL. svn path=/trunk/; revision=11825
This commit is contained in:
@@ -90,7 +90,7 @@ POSK_IFADDR TCPFindInterface( void *ClientData,
|
||||
|
||||
if( !NCE || !NCE->Interface ) {
|
||||
TI_DbgPrint(MID_TRACE,("no neighbor cache or no interface (%x %x)\n",
|
||||
NCE, NCE->Interface));
|
||||
NCE, NCE ? NCE->Interface : 0));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user