Skip to content

Commit

Permalink
Avshws.sys fails to build clean. Typo. (#484)
Browse files Browse the repository at this point in the history
- Fix typo of ExAllocatePoolZero().
- Add PnpLockdown flag to INX file.
  • Loading branch information
JoelCorley authored Apr 23, 2020
1 parent b8af5d7 commit 5408da6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified avstream/avshws/avshws.inx
Binary file not shown.
2 changes: 1 addition & 1 deletion avstream/avshws/device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ operator new[](
ULONG tag
)
{
return ExAllocatePoolWZero(poolType, iSize, tag);
return ExAllocatePoolZero(poolType, iSize, tag);
}

/*++
Expand Down

0 comments on commit 5408da6

Please sign in to comment.