Changeset 33621 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Oct 29, 2010 4:15:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/string.cpp
r33563 r33621 139 139 } 140 140 141 void Utf8StrFmt::init(const char *format, va_list args)142 {143 if (!format || !*format)144 {145 m_cch = 0;146 m_cbAllocated = 0;147 m_psz = NULL;148 }149 else150 {151 m_cch = RTStrAPrintfV(&m_psz, format, args);152 m_cbAllocated = m_cch + 1;153 }154 }155 156 141 } /* namespace com */
Note:
See TracChangeset
for help on using the changeset viewer.