Fix 205069: broken loop logic in PFX.java.

This commit is contained in:
nicolson%netscape.com 2003-05-09 19:02:56 +00:00
Родитель 36d2120328
Коммит 7cd1436ceb
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -425,8 +425,8 @@ public class PFX implements ASN1Value {
// replace the old safe bag with the new
safeContents.insertElementAt(
new SafeBag( safeBag.getBagType(),
epki, safeBag.getBagAttributes()), i);
safeContents.removeElementAt(i+1);
epki, safeBag.getBagAttributes()), j);
safeContents.removeElementAt(j+1);
} else if( val instanceof CertBag ) {
System.out.println(" content is CertBag");
CertBag cb = (CertBag) val;