- Timestamp:
- Jun 12, 2017 5:08:40 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomaker.cpp
r67339 r67342 1306 1306 AssertStmt(pDir, continue); 1307 1307 1308 uint32_t i = pDir->cChildren;1309 while (i -- > 0)1308 uint32_t iChild = pDir->cChildren; 1309 while (iChild-- > 0) 1310 1310 { 1311 PRTFSISOMAKERNAME pChild = pDir->papChildren[i ];1311 PRTFSISOMAKERNAME pChild = pDir->papChildren[iChild]; 1312 1312 if ( pChild->cchSpecNm == cchEntry 1313 1313 && pChild->pDir != NULL
Note:
See TracChangeset
for help on using the changeset viewer.