VirtualBox

Changeset 94948 in vbox


Ignore:
Timestamp:
May 9, 2022 10:44:52 AM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
151356
Message:

Main/src-client/ConsoleImpl2.cpp: Adjust to the new rules wrt. to rc -> hrc,vrc usage, ​bugref:10223

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r94947 r94948  
    44954495
    44964496        char szOsRelease[128];
    4497         int rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szOsRelease, sizeof(szOsRelease));
    4498         bool fKernelHasODirectBug =    RT_FAILURE(rc)
     4497        int vrc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szOsRelease, sizeof(szOsRelease));
     4498        bool fKernelHasODirectBug =    RT_FAILURE(vrc)
    44994499                                    || (RTStrVersionCompare(szOsRelease, "2.6.36-rc4") < 0);
    45004500
     
    45464546         *             was fixed but we _know_ that 2.6.18 EL5 kernels are affected.
    45474547         */
    4548         bool fKernelAsyncUnreliable =    RT_FAILURE(rc)
     4548        bool fKernelAsyncUnreliable =    RT_FAILURE(vrc)
    45494549                                      || (RTStrVersionCompare(szOsRelease, "2.6.19") < 0);
    45504550        if (   (uCaps & MediumFormatCapabilities_Asynchronous)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette