Changeset 78417 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- May 6, 2019 11:24:31 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130414
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/string.cpp
r76553 r78417 328 328 * @param a_pcszSrc The source string. 329 329 * @param a_offSrc Start offset to copy from. 330 * @param a_cchSrc The source string.330 * @param a_cchSrc How much to copy 331 331 * @returns S_OK or E_OUTOFMEMORY. 332 332 * … … 336 336 HRESULT Utf8Str::copyFromExNComRC(const char *a_pcszSrc, size_t a_offSrc, size_t a_cchSrc) 337 337 { 338 Assert(!a_cchSrc || !m_psz || (uintptr_t)&a_pcszSrc[a_offSrc] - (uintptr_t)m_psz >= (uintptr_t)m_cbAllocated); 338 339 cleanup(); 339 340 if (a_cchSrc)
Note:
See TracChangeset
for help on using the changeset viewer.