Fixed typo causing infinite loop.

This commit is contained in:
Vincent Richard 2005-12-20 11:48:43 +00:00
parent 54e4235b8d
commit d906896132

View File

@ -121,7 +121,7 @@ const std::vector <ref <const attachment> >
std::vector <ref <const attachment> > 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]);
}
}