Changeset 76895 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Jan 18, 2019 3:58:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r76878 r76895 108 108 { 109 109 rc = RTErrConvertFromErrno(rc); 110 fVerifyIsDir = false; /*We'll check if it's a dir ourselves since we're going to stat() anyway. */110 /*fVerifyIsDir = false; We'll check if it's a dir ourselves since we're going to stat() anyway. */ 111 111 struct stat st; 112 112 if (!stat(pszNativePath, &st)) … … 125 125 #if 0 /* Windows returns VERR_ALREADY_EXISTS, so why bother with this. */ 126 126 if ( rc == VERR_ALREADY_EXISTS 127 && fVerifyIsDir == true)127 /*&& fVerifyIsDir == true*/) 128 128 { 129 129 /*
Note:
See TracChangeset
for help on using the changeset viewer.