Jacek Caban (@jacek) commented about dlls/ntdll/loader.c:
return NULL; } }
- else
- {
if (wm->ldr.LoadCount != -1) wm->ldr.LoadCount++;
Unless I'm missing something, this means that we'd increase `LoadCount` for each lookup, meaning that multiple `GetProcAddress` would keep incrementing it. Is that intentional? My guess would be to do that when adding a new dependency.