/hg/release/icedtea-web-1.2: Small correction to strSplit

adomurad at icedtea.classpath.org adomurad at icedtea.classpath.org
Tue Jul 24 07:25:32 PDT 2012


changeset 087d8407b2e1 in /hg/release/icedtea-web-1.2
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.2?cmd=changeset;node=087d8407b2e1
author: Adam Domurad <adomurad at redhat.com>
date: Tue Jul 24 10:24:57 2012 -0400

	Small correction to strSplit


diffstat:

 ChangeLog                              |  6 ++++++
 plugin/icedteanp/IcedTeaPluginUtils.cc |  2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diffs (25 lines):

diff -r ad4c1debd54f -r 087d8407b2e1 ChangeLog
--- a/ChangeLog	Fri Jul 20 11:02:23 2012 -0400
+++ b/ChangeLog	Tue Jul 24 10:24:57 2012 -0400
@@ -1,3 +1,9 @@
+2012-07-24  Adam Domurad  <adomurad at redhat.com>
+
+	* plugin/icedteanp/IcedTeaPluginUtils.cc
+	(IcedTeaPluginUtilities::strSplit): Replace usage of " " with proper 
+	delimiter
+
 2012-07-18  Danesh Dadachanji  <ddadacha at redhat.com>
 
 	Fix RH838417, Fix RH838559: Disambiguate signed applet security prompt
diff -r ad4c1debd54f -r 087d8407b2e1 plugin/icedteanp/IcedTeaPluginUtils.cc
--- a/plugin/icedteanp/IcedTeaPluginUtils.cc	Fri Jul 20 11:02:23 2012 -0400
+++ b/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 24 10:24:57 2012 -0400
@@ -316,7 +316,7 @@
 		std::string* s = new std::string();
 		s->append(tok_ptr);
 		v->push_back(s);
-		tok_ptr = strtok (NULL, " ");
+		tok_ptr = strtok (NULL, delim);
 	}
 
 	return v;



More information about the distro-pkg-dev mailing list