aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorOmair Majid <[email protected]>2012-03-22 13:12:44 -0400
committerOmair Majid <[email protected]>2012-03-22 13:12:44 -0400
commit554326d2e7207e1ecab10a6c5bdd8bde6bbf0307 (patch)
treec59c27f5688289e5bc897fb5f8cb1b3432182f66 /ChangeLog
parente1c4e1586266d36cce6e5b075c01ff366063daff (diff)
PR898: signed applications with big jnlp-file doesn't start
JNLPMatcher was using PipedInputStream and PipedOutputStream without threads which was deadlocking on large files. Use ByteArrayOutputStream instead to avoid this.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cc24225..6bc9f11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2012-03-21 Omair Majid <[email protected]>
+
+ * tests/netx/unit/net/sourceforge/jnlp/JNLPMatcherTest.java
+ (testIsMatchDoesNotHangOnLargeData): New method.
+
+2012-03-21 Lars Herschke <[email protected]>
+
+ PR898: signed applications with big jnlp-file doesn't start
+ * netx/net/sourceforge/jnlp/JNLPMatcher.java (JNLPMatcher): Handle large
+ files correctly.
+
2012-03-19 Danesh Dadachanji <[email protected]>
Fix failing unit test missing title/vendor tags in the JNLP stream.