VirtualBox

Changeset 53016 in vbox for trunk


Ignore:
Timestamp:
Oct 10, 2014 12:19:30 AM (10 years ago)
Author:
vboxsync
Message:

SUPDrv-win.cpp: Trust the system process a little bit more to make Mucky and other AVG users happy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp

    r53002 r53016  
    39413941            }
    39423942
    3943             /* The system process is allowed having one open process handle in
    3944                Windows 8.1 and later. */
    3945             if (   g_uNtVerCombined >= SUP_MAKE_NT_VER_SIMPLE(6, 3)
    3946                 && cSystemProcessHandles < 1
     3943            /* The system process is allowed having two open process handle in
     3944               Windows 8.1 and later, and one in earlier. This is probably a
     3945               little overly paranoid as I think we can safely trust the
     3946               system process... */
     3947            if (   cSystemProcessHandles < (g_uNtVerCombined >= SUP_MAKE_NT_VER_SIMPLE(6, 3) ? 2 : 1)
    39473948                && pHandleInfo->UniqueProcessId == PsGetProcessId(PsInitialSystemProcess))
    39483949            {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette