/hg/release/icedtea-web-1.1: 3 new changesets

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Wed May 23 10:12:23 PDT 2012


changeset 8b42017a48a2 in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=8b42017a48a2
author: Deepak Bhole <dbhole at redhat.com>
date: Wed May 23 12:10:19 2012 -0400

	ChangeLog: Converted spaces to tabs in an older entry


changeset 6d9f9e29e56f in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=6d9f9e29e56f
author: Deepak Bhole <dbhole at redhat.com>
date: Wed May 23 12:13:03 2012 -0400

	Use g_mutex_free instead of g_free to free appletviewer_mutex (fixes
	crash).

	Patch from Martin Olsson.


changeset 937e5c2b8fed in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=937e5c2b8fed
author: Deepak Bhole <dbhole at redhat.com>
date: Wed May 23 13:06:02 2012 -0400

	AUTHORS: Added Martin Olsson to list.


diffstat:

 AUTHORS                             |   1 +
 ChangeLog                           |  22 ++++++++++++++++++----
 plugin/icedteanp/IcedTeaNPPlugin.cc |   4 ++--
 3 files changed, 21 insertions(+), 6 deletions(-)

diffs (63 lines):

diff -r 44e61a76e4c4 -r 937e5c2b8fed AUTHORS
--- a/AUTHORS	Tue May 22 13:36:34 2012 -0400
+++ b/AUTHORS	Wed May 23 13:06:02 2012 -0400
@@ -14,6 +14,7 @@
 Omair Majid <omajid at redhat.com>
 Jon A. Maxwell <jmaxwell at users.sourceforge.net>
 Thomas Meyer <thomas at m3y3r.de>
+Martin Olsson <martin at minimum.se>
 Andrew Su <asu at redhat.com>
 Joshua Sumali <jsumali at redhat.com>
 Mark Wielaard <mark at klomp.org>
diff -r 44e61a76e4c4 -r 937e5c2b8fed ChangeLog
--- a/ChangeLog	Tue May 22 13:36:34 2012 -0400
+++ b/ChangeLog	Wed May 23 13:06:02 2012 -0400
@@ -1,9 +1,23 @@
+2012-05-23  Deepak Bhole <dbhole at redhat.com>
+
+	* AUTHORS: Added Martin Olsson to list.
+
+2012-05-23  Martin Olsson  <martin at minimum.se>
+
+	* plugin/icedteanp/IcedTeaNPPlugin.cc:
+	Use g_mutex_free instead of g_free to free appletviewer_mutex (fixes
+	crash).
+
+2012-05-23  Deepak Bhole <dbhole at redhat.com>
+
+	* ChangeLog: Converted spaces to tabs in an older entry
+
 2012-05-22  Adam Domurad  <adomurad at redhat.com>
 
-        * plugin/icedteanp/java/sun/applet/PluginStreamHandler.java: Removed 
-        unnecessary synchronization on Boolean (dangerous) for code that did
-        not require synchronization. Changed Boolean => volatile boolean so 
-        that changes are seen in different threads.
+	* plugin/icedteanp/java/sun/applet/PluginStreamHandler.java: Removed
+	unnecessary synchronization on Boolean (dangerous) for code that did
+	not require synchronization. Changed Boolean => volatile boolean so
+	that changes are seen in different threads.
 
 2012-03-30  Danesh Dadachanji  <ddadacha at redhat.com>
 
diff -r 44e61a76e4c4 -r 937e5c2b8fed plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Tue May 22 13:36:34 2012 -0400
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed May 23 13:06:02 2012 -0400
@@ -388,7 +388,7 @@
   goto cleanup_done;
 
  cleanup_appletviewer_mutex:
-  g_free (data->appletviewer_mutex);
+  g_mutex_free (data->appletviewer_mutex);
   data->appletviewer_mutex = NULL;
 
   // cleanup_instance_string:
@@ -1971,7 +1971,7 @@
   tofree->window_width = 0;
 
   // cleanup_appletviewer_mutex:
-  g_free (tofree->appletviewer_mutex);
+  g_mutex_free (tofree->appletviewer_mutex);
   tofree->appletviewer_mutex = NULL;
 
   // cleanup_instance_string:



More information about the distro-pkg-dev mailing list