mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
GH160: MultipartReader ignores first part, if preamble is missing
fixed GH #160: MultipartReader ignores first part, if preamble is missing
This commit is contained in:
parent
9663074e9e
commit
a65d86a0b2
@ -43,6 +43,7 @@ Release 1.5.2 (2013-04-29)
|
|||||||
- fixed GH #82: name conflict in Data::Keywords::bind
|
- fixed GH #82: name conflict in Data::Keywords::bind
|
||||||
- fixed GH #157: MySQL: cannot bind to 'long' data type on Windows/Visual C++
|
- fixed GH #157: MySQL: cannot bind to 'long' data type on Windows/Visual C++
|
||||||
- fixed GH #158: MySQL: MYSQL_BIND 'is_unsigned' member is not set
|
- fixed GH #158: MySQL: MYSQL_BIND 'is_unsigned' member is not set
|
||||||
|
- fixed GH #160: MultipartReader ignores first part, if preamble is missing
|
||||||
|
|
||||||
Release 1.5.1 (2013-01-11)
|
Release 1.5.1 (2013-01-11)
|
||||||
==========================
|
==========================
|
||||||
|
@ -477,7 +477,7 @@ void MailMessage::readHeader(std::istream& istr)
|
|||||||
clear();
|
clear();
|
||||||
MessageHeader::read(istr);
|
MessageHeader::read(istr);
|
||||||
istr.get(); // \r
|
istr.get(); // \r
|
||||||
istr.get(); // \n
|
if ('\n' == istr.peek()) istr.get(); // \n
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user