/hg/icedtea-web: 3 new changesets
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Wed May 23 10:11:44 PDT 2012
changeset 63ffb5a4de75 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=63ffb5a4de75
author: Deepak Bhole <dbhole at redhat.com>
date: Wed May 23 12:06:03 2012 -0400
ChangeLog: Converted spaces to tabs in an older entry
changeset fdb156630a1e in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=fdb156630a1e
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 f6eddd071004 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=f6eddd071004
author: Deepak Bhole <dbhole at redhat.com>
date: Wed May 23 13:02:58 2012 -0400
AUTHORS: Added Martin Olsson to list.
diffstat:
AUTHORS | 1 +
ChangeLog | 32 +++++++++++++++++++++++---------
plugin/icedteanp/IcedTeaNPPlugin.cc | 4 ++--
3 files changed, 26 insertions(+), 11 deletions(-)
diffs (78 lines):
diff -r 063591de10ee -r f6eddd071004 AUTHORS
--- a/AUTHORS Wed May 23 18:40:09 2012 +0200
+++ b/AUTHORS Wed May 23 13:02:58 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 063591de10ee -r f6eddd071004 ChangeLog
--- a/ChangeLog Wed May 23 18:40:09 2012 +0200
+++ b/ChangeLog Wed May 23 13:02:58 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>
* netx/net/sourceforge/jnlp/resources/Messages.properties: fixed error
@@ -44,15 +58,15 @@
2012-05-22 Adam Domurad <adomurad at redhat.com>
- Changed allocation of small, fixed-size buffers to stack-based
- allocations. Changed occurences of sprintf to the safer function
- snprintf, added buffer information. While unlikely to change
- functionality, snprintf adds an extra check to prevent buffer
- overflows.
- * plugin/icedteanp/IcedTeaNPPlugin.cc: Allocation of small buffers
- using malloc changed to stack allocation & changed sprintf calls to
- buffer-size aware snprintf calls.
- * plugin/icedteanp/IcedTeaPluginUtils.cc: Same as above.
+ Changed allocation of small, fixed-size buffers to stack-based
+ allocations. Changed occurences of sprintf to the safer function
+ snprintf, added buffer information. While unlikely to change
+ functionality, snprintf adds an extra check to prevent buffer
+ overflows.
+ * plugin/icedteanp/IcedTeaNPPlugin.cc: Allocation of small buffers
+ using malloc changed to stack allocation & changed sprintf calls to
+ buffer-size aware snprintf calls.
+ * plugin/icedteanp/IcedTeaPluginUtils.cc: Same as above.
2012-05-22 Jiri Vanek <jvanek at redhat.com>
diff -r 063591de10ee -r f6eddd071004 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc Wed May 23 18:40:09 2012 +0200
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc Wed May 23 13:02:58 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