/hg/icedtea6: - Commit patch from Paulo Cesar Pereira de Andrade...
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Tue Apr 20 13:11:12 PDT 2010
changeset 9d2736fae2b2 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=9d2736fae2b2
author: Deepak Bhole <dbhole at redhat.com>
date: Tue Apr 20 16:11:05 2010 -0400
- Commit patch from Paulo Cesar Pereira de Andrade for IcedTea Bug#
474, incrementing malloc size to account for NULL terminator.
diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
plugin/icedteanp/IcedTeaNPPlugin.cc | 2 +-
diffs (25 lines):
diff -r 902bacad8d1b -r 9d2736fae2b2 ChangeLog
--- a/ChangeLog Mon Apr 19 16:50:36 2010 +0200
+++ b/ChangeLog Tue Apr 20 16:11:05 2010 -0400
@@ -1,3 +1,9 @@ 2010-04-19 Xerxes RÃ¥nby <xerxes at zafen
+2010-04-20 Deepak Bhole <dbhole at redhat.com>
+
+ * plugin/icedteanp/IcedTeaNPPlugin.cc
+ (plugin_filter_environment): Increment malloc size by one to account for
+ NULL terminator. Bug# 474.
+
2010-04-19 Xerxes RÃ¥nby <xerxes at zafena.se>
* ports/hotspot/src/share/vm/shark/sharkBuilder.cpp
diff -r 902bacad8d1b -r 9d2736fae2b2 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc Mon Apr 19 16:50:36 2010 +0200
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc Tue Apr 20 16:11:05 2010 -0400
@@ -1464,7 +1464,7 @@ plugin_filter_environment(void)
plugin_filter_environment(void)
{
gchar **var_names = g_listenv();
- gchar **new_env = (gchar**) malloc(sizeof(gchar*) * g_strv_length (var_names));
+ gchar **new_env = (gchar**) malloc(sizeof(gchar*) * g_strv_length (var_names) + 1);
int i_var, i_env;
for (i_var = 0, i_env = 0; var_names[i_var] != NULL; i_var++)
More information about the distro-pkg-dev
mailing list