Changeset 24678 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Nov 15, 2009 4:07:51 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54860
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/base64.cpp
r21337 r24678 252 252 * Process input in groups of 4 input / 3 output chars. 253 253 */ 254 uint8_t u8Trio[3] ;254 uint8_t u8Trio[3] = { 0, 0, 0 }; /* shuts up gcc */ 255 255 uint8_t *pbData = (uint8_t *)pvData; 256 256 uint8_t u8 = BASE64_INVALID;
Note:
See TracChangeset
for help on using the changeset viewer.