Changeset 688 in vbox for trunk/include/VBox
- Timestamp:
- Feb 6, 2007 5:11:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r1 r688 77 77 if (aSize) 78 78 { 79 bstr = ::SysAllocStringLen (NULL, aSize - 1); 79 UINT size = (UINT)aSize; Assert(size == aSize); 80 bstr = ::SysAllocStringLen (NULL, size - 1); 80 81 if (bstr) 81 82 bstr [0] = 0;
Note:
See TracChangeset
for help on using the changeset viewer.