- Timestamp:
- Feb 14, 2018 5:28:23 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomakercmd.cpp
r70398 r71014 2007 2007 && (Parsed.aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK)) 2008 2008 { 2009 /* Make sure we remove all objects by this name. */ 2009 2010 pszFirstNm = Parsed.aNames[i].szPath; 2010 uint32_t idxObj = RTFsIsoMakerGetObjIdxForPath(pOpts->hIsoMaker, 2011 Parsed.aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK, 2012 Parsed.aNames[i].szPath); 2013 if (idxObj != UINT32_MAX) 2011 for (;;) 2014 2012 { 2013 uint32_t idxObj = RTFsIsoMakerGetObjIdxForPath(pOpts->hIsoMaker, 2014 Parsed.aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK, 2015 Parsed.aNames[i].szPath); 2016 if (idxObj == UINT32_MAX) 2017 break; 2015 2018 rc = RTFsIsoMakerObjRemove(pOpts->hIsoMaker, idxObj); 2016 2019 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.