From d906896132f19642518ecd2def24fbcd598db583 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Tue, 20 Dec 2005 11:48:43 +0000 Subject: [PATCH] Fixed typo causing infinite loop. --- src/attachmentHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attachmentHelper.cpp b/src/attachmentHelper.cpp index 9c080472..a4970dd0 100644 --- a/src/attachmentHelper.cpp +++ b/src/attachmentHelper.cpp @@ -121,7 +121,7 @@ const std::vector > std::vector > partAtts = findAttachmentsInBodyPart(bdy->getPartAt(i)); - for (unsigned int j = 0 ; j < partAtts.size() ; ++i) + for (unsigned int j = 0 ; j < partAtts.size() ; ++j) atts.push_back(partAtts[j]); } }