mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
- Fix a code typo resulting in calls to MiQueryResources to return early
svn path=/branches/aicom-network-fixes/; revision=35744
This commit is contained in:
parent
8fa497277d
commit
cf392f00f6
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ static VOID STDCALL MiQueryResources(
|
|||
WrapperConfigurationContext,
|
||||
NULL,
|
||||
&BufferSize);
|
||||
if (*Status == NDIS_STATUS_SUCCESS)
|
||||
if (*Status != NDIS_STATUS_SUCCESS)
|
||||
return;
|
||||
|
||||
*Status = NdisAllocateMemory((PVOID)&AssignedResources,
|
||||
|
|
Loading…
Reference in a new issue