Changeset 67768 in vbox
- Timestamp:
- Jul 4, 2017 9:51:08 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116678
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c
r67623 r67768 1049 1049 1050 1050 if (pState->fUpdate) 1051 { 1051 1052 rc = RegCreateKeyExW(pState->hkeyClassesRootDst, L"AppID", 0 /*Reserved*/, NULL /*pszClass*/, 0 /*fOptions*/, 1052 1053 pState->fSamBoth, NULL /*pSecAttr*/, &hkeyAppIds, NULL /*pdwDisposition*/); 1054 if (rc == ERROR_ACCESS_DENIED) 1055 return ERROR_SUCCESS; 1056 } 1053 1057 else 1054 1058 { 1055 1059 rc = RegOpenKeyExW(pState->hkeyClassesRootDst, L"AppID", 0 /*fOptions*/, pState->fSamBoth, &hkeyAppIds); 1056 if (rc == ERROR_FILE_NOT_FOUND )1060 if (rc == ERROR_FILE_NOT_FOUND || rc == ERROR_ACCESS_DENIED) 1057 1061 return ERROR_SUCCESS; 1058 1062 }
Note:
See TracChangeset
for help on using the changeset viewer.