VirtualBox

Ignore:
Timestamp:
May 23, 2019 4:57:55 PM (6 years ago)
Author:
vboxsync
Message:

winnt/vboxsf: Set error style if the host supports it. bugref:9172

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsf.cpp

    r78631 r78700  
    16651665                {
    16661666                    /*
     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                    /*
    16671677                     * Resolve newer kernel APIs we might want to use.
    16681678                     * Note! Because of http://www.osronline.com/article.cfm%5eid=494.htm we cannot
     
    16701680                     */
    16711681                    RTDBGKRNLINFO hKrnlInfo;
    1672                     int rc = 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))
    16751685                    {
    16761686                        g_pfnCcCoherencyFlushAndPurgeCache
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