Apparently I'm cursed. ndis_findwrap() should be searching ndis_functbl,

not ntoskrnl_functbl.
This commit is contained in:
Bill Paul 2005-03-31 21:20:19 +00:00
parent 503e759c5d
commit 2c87b2b73f

View file

@ -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);