Changeset 99730 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 10, 2023 4:14:23 PM (19 months ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsstddir.cpp
r98103 r99730 236 236 fMode |= ~fMask & ObjInfo.Attr.fMode; 237 237 } 238 //RTPathSetMode 239 //return RTFileSetMode(pThis->hDir, fMode); 238 #if 0 239 RTPathSetMode 240 return RTFileSetMode(pThis->hDir, fMode); 241 #else 242 RT_NOREF(fMode); 240 243 return VERR_NOT_IMPLEMENTED; 244 #endif 241 245 } 242 246 -
trunk/src/VBox/Runtime/r3/xml.cpp
r98103 r99730 893 893 } 894 894 895 896 895 const ElementNode *ElementNode::findChildElementP(const char *pcszPath, const char *pcszNamespace /*= NULL*/) const 897 896 { 898 size_t cchThis = strchr(pcszPath, '/') - pcszPath; 899 if (cchThis == (size_t)((const char *)0 - pcszPath)) 897 const char *pszElm = strchr(pcszPath, '/'); 898 size_t const cchThis = pszElm ? pszElm - pcszPath : 0; 899 if (!cchThis) 900 900 return findChildElementNS(pcszNamespace, pcszPath); 901 901
Note:
See TracChangeset
for help on using the changeset viewer.