/hg/icedtea-web: Small correction in strSplit

adomurad at icedtea.classpath.org adomurad at icedtea.classpath.org
Tue Jul 24 07:42:33 PDT 2012


changeset 0c42aee7089e in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=0c42aee7089e
author: Adam Domurad <adomurad at redhat.com>
date: Tue Jul 24 10:38:51 2012 -0400

	Small correction in strSplit


diffstat:

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

diffs (25 lines):

diff -r be423d1f265d -r 0c42aee7089e ChangeLog
--- a/ChangeLog	Fri Jul 20 10:38:07 2012 -0400
+++ b/ChangeLog	Tue Jul 24 10:38:51 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 be423d1f265d -r 0c42aee7089e plugin/icedteanp/IcedTeaPluginUtils.cc
--- a/plugin/icedteanp/IcedTeaPluginUtils.cc	Fri Jul 20 10:38:07 2012 -0400
+++ b/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 24 10:38:51 2012 -0400
@@ -311,7 +311,7 @@
 	    std::string* s = new std::string();
 	    s->append(tok_ptr);
 	    v->push_back(s);
-	    tok_ptr = strtok (NULL, " ");
+	    tok_ptr = strtok (NULL, delim);
 	}
         free(copy);
 



More information about the distro-pkg-dev mailing list