Changeset 69753 in vbox for trunk/src/VBox/Runtime/common/path
- Timestamp:
- Nov 19, 2017 2:27:58 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119153
- Location:
- trunk/src/VBox/Runtime/common/path
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp
r69111 r69753 1447 1447 * @param cbNeeded The required entry size. 1448 1448 */ 1449 DECL_NO_INLINE(static, int) rtPathGlobSkipDirEntry( PRTDIR hDir, size_t cbNeeded)1449 DECL_NO_INLINE(static, int) rtPathGlobSkipDirEntry(RTDIR hDir, size_t cbNeeded) 1450 1450 { 1451 1451 int rc = VERR_BUFFER_OVERFLOW; … … 1875 1875 * Enumerate entire directory and match each entry. 1876 1876 */ 1877 PRTDIR hDir;1877 RTDIR hDir; 1878 1878 int rc = RTDirOpen(&hDir, offPath ? pGlob->szPath : "."); 1879 1879 if (RT_SUCCESS(rc)) -
trunk/src/VBox/Runtime/common/path/RTPathRmCmd.cpp
r69111 r69753 270 270 * Traverse the directory. 271 271 */ 272 PRTDIR hDir;272 RTDIR hDir; 273 273 int rc = RTDirOpen(&hDir, pszPath); 274 274 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.