[E1000] Remove useless null check

CID 512827
This commit is contained in:
Pierre Schweitzer 2019-02-16 10:01:50 +01:00
parent e1f4d2864a
commit 24b2d59ab6
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -286,10 +286,8 @@ Cleanup:
{
NdisFreeMemory(ResourceList, ResourceListSize, 0);
}
if (Adapter != NULL)
{
MiniportHalt(Adapter);
}
MiniportHalt(Adapter);
return Status;
}