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

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


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

	ChangeLog: Converted spaces to tabs in an older entry


changeset 0765eba8ab35 in /hg/release/icedtea-web-1.2
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.2?cmd=changeset;node=0765eba8ab35
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 0cdefd555de7 in /hg/release/icedtea-web-1.2
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.2?cmd=changeset;node=0cdefd555de7
author: Deepak Bhole <dbhole at redhat.com>
date: Wed May 23 13:05:12 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 (68 lines):

diff -r ea4d6cf512ca -r 0cdefd555de7 AUTHORS
--- a/AUTHORS	Wed May 23 14:57:33 2012 +0200
+++ b/AUTHORS	Wed May 23 13:05:12 2012 -0400
@@ -17,6 +17,7 @@
 Jon A. Maxwell <jmaxwell at users.sourceforge.net>
 Thomas Meyer <thomas at m3y3r.de>
 Saad Mohammad <smohammad at redhat.com>
+Martin Olsson  <martin at minimum.se>
 Andrew Su <asu at redhat.com>
 Joshua Sumali <jsumali at redhat.com>
 Jiri Vanek <jvanek at redhat.com>
diff -r ea4d6cf512ca -r 0cdefd555de7 ChangeLog
--- a/ChangeLog	Wed May 23 14:57:33 2012 +0200
+++ b/ChangeLog	Wed May 23 13:05:12 2012 -0400
@@ -1,3 +1,17 @@
+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-23  Jiri Vanek  <jvanek at redhat.com>
 
 	Enhanced about dialog
@@ -11,10 +25,10 @@
 
 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-05-22  Jiri Vanek  <jvanek at redhat.com>
 		Omair Majid  <omajid at redhat.com>
diff -r ea4d6cf512ca -r 0cdefd555de7 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed May 23 14:57:33 2012 +0200
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed May 23 13:05:12 2012 -0400
@@ -427,7 +427,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:
@@ -2000,7 +2000,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