- Timestamp:
- Sep 17, 2019 4:47:07 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c
r76553 r80870 571 571 rc = RegOpenKeyExW(pState->hkeyClassesRootDst, L"Interface", 0 /*fOptions*/, pState->fSamBoth, 572 572 &pState->hkeyClsidRootDst); 573 if (rc == ERROR_ACCESS_DENIED) 574 { 575 pState->hkeyInterfaceRootDst = NULL; 576 return pState->rc = rc; 577 } 573 578 AssertLogRelMsgReturnStmt(rc == ERROR_SUCCESS, ("%u\n", rc), pState->hkeyInterfaceRootDst = NULL, pState->rc = rc); 574 579 } … … 1072 1077 return ERROR_SUCCESS; 1073 1078 } 1079 if (rc == ERROR_ACCESS_DENIED) 1080 return pState->rc = rc; 1074 1081 AssertLogRelMsgReturn(rc == ERROR_SUCCESS, ("%u\n", rc), pState->rc = rc); 1075 1082
Note:
See TracChangeset
for help on using the changeset viewer.