diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-07 23:30:49 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-08 11:35:51 +0200 |
commit | 40ee1fcfb77731f3cd7385882f41630af6aedb33 (patch) | |
tree | 6b13dd75ca9cfbac7daef4f0d5dc2e342ee9ef7d /src/mime-parsefull.cc | |
parent | 1978c49bea5b439d993067c055cec47e70db8fd6 (diff) |
reduce line limit to 95
Diffstat (limited to 'src/mime-parsefull.cc')
-rw-r--r-- | src/mime-parsefull.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mime-parsefull.cc b/src/mime-parsefull.cc index 5d5d836..faf02f0 100644 --- a/src/mime-parsefull.cc +++ b/src/mime-parsefull.cc @@ -586,7 +586,13 @@ int Binc::MimePart::parseFull(const string &toboundary, int &boundarysize) const &bodylength, &members); } else { - parseSinglePart(toboundary, &boundarysize, &nbodylines, &nlines, &eof, &foundendofpart, &bodylength); + parseSinglePart(toboundary, + &boundarysize, + &nbodylines, + &nlines, + &eof, + &foundendofpart, + &bodylength); } return (eof || foundendofpart) ? 1 : 0; |