Changeset 30320 in vbox for trunk/src/VBox/Runtime/common/path
- Timestamp:
- Jun 21, 2010 8:35:09 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62878
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathAppend.cpp
r28800 r30320 107 107 RTDECL(int) RTPathAppend(char *pszPath, size_t cbPathDst, const char *pszAppend) 108 108 { 109 char *pszPathEnd = (char *)memchr(pszPath, '\0', cbPathDst);109 char *pszPathEnd = RTStrEnd(pszPath, cbPathDst); 110 110 AssertReturn(pszPathEnd, VERR_INVALID_PARAMETER); 111 111
Note:
See TracChangeset
for help on using the changeset viewer.