mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +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:
parent
80178bd318
commit
e0e18ffc09
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue