Changeset 78400 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- May 6, 2019 6:10:42 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathAbsEx.cpp
r78153 r78400 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #define LOG_GROUP RTLOGGROUP_PATH 31 32 #include "internal/iprt.h" 32 33 #include <iprt/path.h> … … 34 35 #include <iprt/err.h> 35 36 #include <iprt/ctype.h> 37 #include <iprt/log.h> 36 38 #include <iprt/mem.h> 37 39 #include <iprt/param.h> … … 603 605 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, uint32_t fFlags, char *pszAbsPath, size_t *pcbAbsPath) 604 606 { 607 LogFlow(("RTPathAbsEx: pszBase=%s pszPath=%s fFlags=%#x\n", pszBase, pszPath, fFlags)); 608 605 609 /* 606 610 * Some input validation. … … 674 678 if (pParsedFree) 675 679 RTMemTmpFree(pParsedFree); 680 LogFlow(("RTPathAbsEx: returns %Rrc *pcbAbsPath=%#zx\n", rc, *pcbAbsPath)); 676 681 return rc; 677 682 }
Note:
See TracChangeset
for help on using the changeset viewer.