forked from pool/libvmime
46 lines
1.2 KiB
Diff
46 lines
1.2 KiB
Diff
|
diff -Nurb libvmime-0.9.2.orig/src/headerField.cpp libvmime-0.9.2.patched/src/headerField.cpp
|
||
|
--- libvmime-0.9.2.orig/src/headerField.cpp 2010-05-20 05:33:45.000000000 -0700
|
||
|
+++ libvmime-0.9.2.patched/src/headerField.cpp 2011-08-29 12:10:08.438497914 -0700
|
||
|
@@ -157,14 +157,12 @@
|
||
|
{
|
||
|
contentsEnd = pos;
|
||
|
pos += 2;
|
||
|
- break;
|
||
|
}
|
||
|
else if (c == '\n')
|
||
|
{
|
||
|
contentsEnd = pos;
|
||
|
++pos;
|
||
|
- break;
|
||
|
- }
|
||
|
+ } else {
|
||
|
|
||
|
while (pos < end)
|
||
|
{
|
||
|
@@ -186,24 +184,13 @@
|
||
|
|
||
|
++pos;
|
||
|
}
|
||
|
+ }
|
||
|
|
||
|
// Handle the case of folded lines
|
||
|
if (buffer[pos] == ' ' || buffer[pos] == '\t')
|
||
|
{
|
||
|
// This is a folding white-space: we keep it as is and
|
||
|
// we continue with contents parsing...
|
||
|
-
|
||
|
- // If the line contains only space characters, we assume it is
|
||
|
- // the end of the headers. This is not strictly standard-compliant
|
||
|
- // but, hey, we can't fail when parsing some malformed mails...
|
||
|
- while (pos < end && (buffer[pos] == ' ' || buffer[pos] == '\t'))
|
||
|
- ++pos;
|
||
|
-
|
||
|
- if ((pos < end && buffer[pos] == '\n') ||
|
||
|
- (pos + 1 < end && buffer[pos] == '\r' && buffer[pos + 1] == '\n'))
|
||
|
- {
|
||
|
- break;
|
||
|
- }
|
||
|
}
|
||
|
else
|
||
|
{
|