source:
npl/overig/libvmime/vmime-ignore-multiple-colons-in-headers.diff
@
c5c522c
Last change on this file since c5c522c was c5c522c, checked in by , 8 years ago | |
---|---|
|
|
File size: 620 bytes |
-
svn/src/headerField.cpp
132 132 buffer.begin() + nameEnd); 133 133 134 134 // Skip ':' character 135 ++pos; 135 // Patch: don't just skip one colon, but any and all, if available. NS 2 December 2013 136 while ((pos < end) && (buffer[pos] == ':')) 137 ++pos; 136 138 137 139 // Skip spaces between ':' and the field contents 138 140 while (pos < end && (buffer[pos] == ' ' || buffer[pos] == '\t'))
Note: See TracBrowser
for help on using the repository browser.