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:
Art Yerkes 2004-11-26 21:17:22 +00:00
parent 80178bd318
commit e0e18ffc09

View file

@ -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;
}