mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Apparently I'm cursed. ndis_findwrap() should be searching ndis_functbl,
not ntoskrnl_functbl.
This commit is contained in:
parent
503e759c5d
commit
2c87b2b73f
1 changed files with 1 additions and 1 deletions
|
|
@ -334,7 +334,7 @@ ndis_findwrap(func)
|
|||
{
|
||||
image_patch_table *patch;
|
||||
|
||||
patch = ntoskrnl_functbl;
|
||||
patch = ndis_functbl;
|
||||
while (patch->ipt_func != NULL) {
|
||||
if ((funcptr)patch->ipt_func == func)
|
||||
return((funcptr)patch->ipt_wrap);
|
||||
|
|
|
|||
Loading…
Reference in a new issue