VirtualBox

Ignore:
Timestamp:
Nov 26, 2021 9:53:47 PM (3 years ago)
Author:
vboxsync
Message:

SUP,IPRT,++: Adding SUPSECMAIN_FLAGS_DRIVERLESS_IEM_ALLOWED and SUPR3INIT_F_DRIVERLESS_NEM_FALLBACK to SUPLib and RTR3INIT_FLAGS_TRY_SUPLIB to RTR3Init*, the latter probably reflects the actual state there a lot better. Currently only the TRY_SUPLIB option works, the other two aren't really implemented in SUPLib yet. bugref:10138

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/NetworkServices/Dhcpd/VBoxNetDhcpd.cpp

    r87745 r92613  
    776776    VBoxNetDhcpd Dhcpd;
    777777    int rc = Dhcpd.main(argc, argv);
    778 
    779778    return RT_SUCCESS(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    780779}
     
    786785{
    787786    int rc = RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB);
    788     if (RT_FAILURE(rc))
    789         return RTMsgInitFailure(rc);
    790 
    791     return TrustedMain(argc, argv);
     787    if (RT_SUCCESS(rc))
     788        return TrustedMain(argc, argv);
     789    return RTMsgInitFailure(rc);
    792790}
    793791
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