/hg/release/icedtea6-1.7: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon Jun 7 11:44:04 PDT 2010


changeset 8b77407094df in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=8b77407094df
author: Deepak Bhole <dbhole at redhat.com>
date: Tue Apr 20 16:11:05 2010 -0400

	PR icedtea/474: Commit patch from Paulo Cesar Pereira de Andrade,
	incrementing malloc size to account for NULL terminator.

	2010-04-20 Deepak Bhole <dbhole at redhat.com>

	 PR icedtea/474
		* plugin/icedteanp/IcedTeaNPPlugin.cc
	(plugin_filter_environment): Increment malloc size by one to account
	for NULL terminator. Bug# 474.


changeset f779c58329e1 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=f779c58329e1
author: Deepak Bhole <dbhole at redhat.com>
date: Wed Apr 21 11:30:49 2010 -0400

	Fixed typo in previous commit

	2010-04-21 Deepak Bhole <dbhole at redhat.com>

	 * plugin/icedteanp/IcedTeaNPPlugin.cc
	(plugin_filter_environment): Fix typo in previous commit


diffstat:

2 files changed, 13 insertions(+), 1 deletion(-)
ChangeLog                           |   12 ++++++++++++
plugin/icedteanp/IcedTeaNPPlugin.cc |    2 +-

diffs (31 lines):

diff -r cf888f068f5f -r f779c58329e1 ChangeLog
--- a/ChangeLog	Mon Apr 12 17:20:51 2010 -0400
+++ b/ChangeLog	Wed Apr 21 11:30:49 2010 -0400
@@ -1,3 +1,15 @@ 2010-04-12  Deepak Bhole <dbhole at redhat.
+2010-04-21  Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedteanp/IcedTeaNPPlugin.cc
+	(plugin_filter_environment): Fix typo in previous commit
+
+2010-04-20  Deepak Bhole <dbhole at redhat.com>
+
+	PR icedtea/474
+	* plugin/icedteanp/IcedTeaNPPlugin.cc
+	(plugin_filter_environment): Increment malloc size by one to account for
+	NULL terminator. Bug# 474.
+
 2010-04-12  Deepak Bhole <dbhole at redhat.com>
 
 	* plugin/icedteanp/IcedTeaNPPlugin.cc (ITNP_New): Removed debug printf
diff -r cf888f068f5f -r f779c58329e1 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Mon Apr 12 17:20:51 2010 -0400
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed Apr 21 11:30:49 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