Changeset 66683 in vbox
- Timestamp:
- Apr 27, 2017 7:46:45 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115074
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/STAM.cpp
r62644 r66683 2044 2044 * Copy the chars to the buffer and terminate it. 2045 2045 */ 2046 memcpy(pThis->psz, pach, cch); 2047 pThis->psz += cch; 2046 if (cch) 2047 { 2048 memcpy(pThis->psz, pach, cch); 2049 pThis->psz += cch; 2050 } 2048 2051 *pThis->psz = '\0'; 2049 2052 return cch;
Note:
See TracChangeset
for help on using the changeset viewer.