Changeset 52025 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Jul 14, 2014 9:39:52 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95004
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/base64.cpp
r51792 r52025 110 110 && i == '=') 111 111 || ( u8 == BASE64_SPACE 112 && ( RT_C_IS_SPACE(i) 113 || (i == '\r'))) /* Carriage return is handled as a space character as well. */ 112 && RT_C_IS_SPACE(i)) 114 113 || ( u8 < 64 115 114 && (unsigned)g_szValToChar[u8] == i));
Note:
See TracChangeset
for help on using the changeset viewer.