mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-24 01:32:16 -05:00
fix fromStream method, properly recognize multiple concatenated streams
This commit is contained in:
parent
b40081c364
commit
acb5a70e44
@ -27,9 +27,11 @@ import java.io.ByteArrayOutputStream;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.TreeSet;
|
import java.util.TreeSet;
|
||||||
|
|
||||||
@ -133,11 +135,9 @@ public class UncachedKeyRing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
while(stream.available() > 0) {
|
||||||
|
// if there are no objects left from the last factory, create a new one
|
||||||
if (mObjectFactory == null) {
|
if (mObjectFactory == null) {
|
||||||
if (stream.available() == 0) {
|
|
||||||
// end of stream. that's fine
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
mObjectFactory = new PGPObjectFactory(PGPUtil.getDecoderStream(stream));
|
mObjectFactory = new PGPObjectFactory(PGPUtil.getDecoderStream(stream));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,6 +154,9 @@ public class UncachedKeyRing {
|
|||||||
mNext = new UncachedKeyRing((PGPKeyRing) obj);
|
mNext = new UncachedKeyRing((PGPKeyRing) obj);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// if we are past the while loop, that means the objectFactory had no next
|
||||||
|
mObjectFactory = null;
|
||||||
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Log.e(Constants.TAG, "IOException while processing stream", e);
|
Log.e(Constants.TAG, "IOException while processing stream", e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user