/hg/release/icedtea6-1.7: Fix PR619: Improper finalization by th...
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Thu Jan 20 08:13:19 PST 2011
changeset 500f06b81c78 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=500f06b81c78
author: Deepak Bhole <dbhole at redhat.com>
date: Thu Jan 20 11:11:20 2011 -0500
Fix PR619: Improper finalization by the plugin can crash the browser
diffstat:
3 files changed, 12 insertions(+)
ChangeLog | 6 ++++++
NEWS | 1 +
plugin/icedteanp/java/netscape/javascript/JSObject.java | 5 +++++
diffs (39 lines):
diff -r 9cfe7a59b531 -r 500f06b81c78 ChangeLog
--- a/ChangeLog Tue Jan 18 15:07:41 2011 +0000
+++ b/ChangeLog Thu Jan 20 11:11:20 2011 -0500
@@ -1,3 +1,9 @@ 2011-01-18 Andrew John Hughes <ahughes
+2011-01-20 Deepak Bhole <dbhole at redhat.com>
+
+ PR619: Improper finalization by the plugin can crash the browser
+ * plugin/icedteanp/java/netscape/javascript/JSObject.java (finalize):
+ Proceed with finalization only if JSObject is valid.
+
2011-01-18 Andrew John Hughes <ahughes at redhat.com>
* NEWS: Update date of 1.7.7 release.
diff -r 9cfe7a59b531 -r 500f06b81c78 NEWS
--- a/NEWS Tue Jan 18 15:07:41 2011 +0000
+++ b/NEWS Thu Jan 20 11:11:20 2011 -0500
@@ -16,6 +16,7 @@ New in release 1.7.8 (2011-XX-XX):
- S6782079: PNG: reading metadata may cause OOM on truncated images
* Fixes:
- RH647157,RH582455: Update fontconfig files for rhel 6
+ - PR619: Improper finalization by the plugin can crash the browser
New in release 1.7.7 (2011-01-18):
diff -r 9cfe7a59b531 -r 500f06b81c78 plugin/icedteanp/java/netscape/javascript/JSObject.java
--- a/plugin/icedteanp/java/netscape/javascript/JSObject.java Tue Jan 18 15:07:41 2011 +0000
+++ b/plugin/icedteanp/java/netscape/javascript/JSObject.java Thu Jan 20 11:11:20 2011 -0500
@@ -279,6 +279,11 @@ public final class JSObject {
*/
protected void finalize()
{
+
+ // Proceed if this is a valid object (0L == default long == invalid)
+ if (internal == 0L)
+ return;
+
PluginDebug.debug("JSObject.finalize ");
PluginAppletViewer.JavaScriptFinalize(internal);
}
More information about the distro-pkg-dev
mailing list