Changeset 33529 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Oct 27, 2010 6:55:44 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/base64.cpp
r28800 r33529 109 109 && i == '=') 110 110 || ( u8 == BASE64_SPACE 111 && RT_C_IS_SPACE(i)) 111 && ( RT_C_IS_SPACE(i) 112 || (i == '\r'))) /* Carriage return is handled as a space character as well. */ 112 113 || ( u8 < 64 113 114 && (unsigned)g_szValToChar[u8] == i));
Note:
See TracChangeset
for help on using the changeset viewer.