Changeset 69753 in vbox for trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp
- Timestamp:
- Nov 19, 2017 2:27:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp
r69500 r69753 1074 1074 * Ok, down to business. 1075 1075 */ 1076 PRTDIR pDir;1077 rc = RTDirOpen(& pDir, pszBaseDir);1076 RTDIR hDir; 1077 rc = RTDirOpen(&hDir, pszBaseDir); 1078 1078 if (RT_FAILURE(rc)) 1079 1079 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed open the base directory: %Rrc ('%s')", rc, pszBaseDir); … … 1084 1084 { 1085 1085 RTDIRENTRYEX Entry; 1086 rc = RTDirReadEx( pDir, &Entry, NULL /*pcbDirEntry*/, RTFSOBJATTRADD_NOTHING, RTPATH_F_ON_LINK);1086 rc = RTDirReadEx(hDir, &Entry, NULL /*pcbDirEntry*/, RTFSOBJATTRADD_NOTHING, RTPATH_F_ON_LINK); 1087 1087 if (RT_FAILURE(rc)) 1088 1088 { … … 1127 1127 } 1128 1128 } 1129 RTDirClose( pDir);1129 RTDirClose(hDir); 1130 1130 if (!cCleaned) 1131 1131 RTMsgInfo("Nothing to clean.");
Note:
See TracChangeset
for help on using the changeset viewer.