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

adomurad at icedtea.classpath.org adomurad at icedtea.classpath.org
Tue Jul 24 07:35:34 PDT 2012


changeset 14fbe4fcec25 in /hg/release/icedtea-web-1.3
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.3?cmd=changeset;node=14fbe4fcec25
author: Adam Domurad <adomurad at redhat.com>
date: Tue Jul 24 10:35:11 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 b1b5b91b9830 -r 14fbe4fcec25 ChangeLog
--- a/ChangeLog	Tue Jul 24 10:34:08 2012 -0400
+++ b/ChangeLog	Tue Jul 24 10:35:11 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-24  Adam Domurad  <adomurad at redhat.com>
 
 	Refactor JNLPFile#launchType into its own interface type (as opposed to
diff -r b1b5b91b9830 -r 14fbe4fcec25 plugin/icedteanp/IcedTeaPluginUtils.cc
--- a/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 24 10:34:08 2012 -0400
+++ b/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 24 10:35:11 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