# HG changeset patch # User Adam Domurad # Date 1343140511 14400 # Node ID 14fbe4fcec25f8a5432b1341921b66ef884f5740 # Parent b1b5b91b9830d2c906bc01e8a90580e884e3d175 Small correction to strSplit 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 + + * plugin/icedteanp/IcedTeaPluginUtils.cc + (IcedTeaPluginUtilities::strSplit): Replace usage of " " with proper + delimiter + 2012-07-24 Adam Domurad 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);