Changeset 74174 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Sep 10, 2018 9:40:08 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124947
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/ministring.cpp
r73963 r74174 205 205 reserve(a_cTimes + 1); 206 206 memset(m_psz, a_ch, a_cTimes); 207 m_psz[a_cTimes] = '\0'; 208 m_cch = a_cTimes; 207 209 return *this; 208 210 } … … 215 217 { 216 218 memset(m_psz, a_ch, a_cTimes); 219 m_psz[a_cTimes] = '\0'; 220 m_cch = a_cTimes; 217 221 return VINF_SUCCESS; 218 222 }
Note:
See TracChangeset
for help on using the changeset viewer.