VirtualBox

Changeset 63677 in vbox for trunk/src/VBox/HostDrivers


Ignore:
Timestamp:
Sep 1, 2016 9:03:39 AM (8 years ago)
Author:
vboxsync
Message:

shut up gcc for complaining about readdir_r() with glibc 2.24+

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp

    r62877 r63677  
    15621562        struct dirent Entry;
    15631563        struct dirent *pEntry;
     1564#if RT_GNUC_PREREQ(4, 6)
     1565# pragma GCC diagnostic push
     1566# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
     1567#endif
    15641568        int iErr = readdir_r(pDir, &Entry, &pEntry);
     1569#if RT_GNUC_PREREQ(4, 6)
     1570# pragma GCC diagnostic pop
     1571#endif
    15651572        if (iErr)
    15661573        {
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