[pkg-java] r19005 - in trunk/bsh/debian: . patches

Markus Koschany apo-guest at moszumanska.debian.org
Sat Mar 5 22:23:55 UTC 2016


Author: apo-guest
Date: 2016-03-05 22:23:55 +0000 (Sat, 05 Mar 2016)
New Revision: 19005

Modified:
   trunk/bsh/debian/changelog
   trunk/bsh/debian/patches/CVE-2016-2510.patch
Log:
Release 2.0b4-17


Modified: trunk/bsh/debian/changelog
===================================================================
--- trunk/bsh/debian/changelog	2016-02-28 17:49:15 UTC (rev 19004)
+++ trunk/bsh/debian/changelog	2016-03-05 22:23:55 UTC (rev 19005)
@@ -1,3 +1,12 @@
+bsh (2.0b4-17) unstable; urgency=medium
+
+  * Team upload.
+  * Update CVE-2016-2510.patch and use java.io.ObjectStreamException and
+    java.io.NotSerializableException directly to ensure Jedit can be build from
+    source.
+
+ -- Markus Koschany <apo at debian.org>  Fri, 04 Mar 2016 14:58:01 +0100
+
 bsh (2.0b4-16) unstable; urgency=high
 
   * Team upload.

Modified: trunk/bsh/debian/patches/CVE-2016-2510.patch
===================================================================
--- trunk/bsh/debian/patches/CVE-2016-2510.patch	2016-02-28 17:49:15 UTC (rev 19004)
+++ trunk/bsh/debian/patches/CVE-2016-2510.patch	2016-03-05 22:23:55 UTC (rev 19005)
@@ -35,8 +35,8 @@
 -	class Handler implements InvocationHandler, java.io.Serializable 
 +	class Handler implements InvocationHandler
  	{
-+		private Object readResolve() throws ObjectStreamException {
-+			throw new NotSerializableException();
++		private Object readResolve() throws java.io.ObjectStreamException {
++			throw new java.io.NotSerializableException();
 +		}
 +
  		public Object invoke( Object proxy, Method method, Object[] args ) 




More information about the pkg-java-commits mailing list