Changeset 78700 in vbox for trunk/src/VBox/Additions/WINNT/SharedFolders
- Timestamp:
- May 23, 2019 4:57:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsf.cpp
r78631 r78700 1665 1665 { 1666 1666 /* 1667 * Tell the host to return windows-style errors (non-fatal). 1668 */ 1669 if (g_uSfLastFunction >= SHFL_FN_SET_ERROR_STYLE) 1670 { 1671 vrc = VbglR0SfHostReqSetErrorStyleSimple(kShflErrorStyle_Windows); 1672 if (RT_FAILURE(vrc)) 1673 LogRel(("VBoxSF: VbglR0HostReqSetErrorStyleSimple(windows) failed: %Rrc\n", vrc)); 1674 } 1675 1676 /* 1667 1677 * Resolve newer kernel APIs we might want to use. 1668 1678 * Note! Because of http://www.osronline.com/article.cfm%5eid=494.htm we cannot … … 1670 1680 */ 1671 1681 RTDBGKRNLINFO hKrnlInfo; 1672 intrc = RTR0DbgKrnlInfoOpen(&hKrnlInfo, 0/*fFlags*/);1673 AssertLogRelRC( rc);1674 if (RT_SUCCESS( rc))1682 vrc = RTR0DbgKrnlInfoOpen(&hKrnlInfo, 0/*fFlags*/); 1683 AssertLogRelRC(vrc); 1684 if (RT_SUCCESS(vrc)) 1675 1685 { 1676 1686 g_pfnCcCoherencyFlushAndPurgeCache
Note:
See TracChangeset
for help on using the changeset viewer.