mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
We can arrive here early on, before the filter is set. Check for a null
filter. svn path=/trunk/; revision=12150
This commit is contained in:
parent
25c4daa164
commit
4d8fc530e9
1 changed files with 4 additions and 0 deletions
|
@ -83,6 +83,10 @@ EthFilterDprIndicateReceive(
|
|||
* PacketSize = Total size of received packet
|
||||
*/
|
||||
{
|
||||
/* Not sure if this is a valid thing to do, but we do arrive here early
|
||||
* in the boot process with Filter NULL. We need to investigate whether
|
||||
* this should be handled or not allowed. */
|
||||
if( !Filter ) return;
|
||||
MiniIndicateData((PLOGICAL_ADAPTER)Filter->Miniport,
|
||||
MacReceiveContext,
|
||||
HeaderBuffer,
|
||||
|
|
Loading…
Reference in a new issue