Changeset 63677 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Sep 1, 2016 9:03:39 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r62564 r63677 300 300 { 301 301 struct dirent *pResult = NULL; 302 #if RT_GNUC_PREREQ(4, 6) 303 # pragma GCC diagnostic push 304 # pragma GCC diagnostic ignored "-Wdeprecated-declarations" 305 #endif 302 306 int rc = readdir_r(pDir->pDir, &pDir->Data, &pResult); 307 #if RT_GNUC_PREREQ(4, 6) 308 # pragma GCC diagnostic pop 309 #endif 303 310 if (rc) 304 311 {
Note:
See TracChangeset
for help on using the changeset viewer.