# HG changeset patch # User Adam Domurad # Date 1343139610 14400 # Node ID a9a689478c9614c4e8bd7574e2badb8003538486 # Parent a8abb4b08bf8cfa1cb9d1b4eb37644bc0efe5fbf Small correction to strSplit diff -r a8abb4b08bf8 -r a9a689478c96 ChangeLog --- a/ChangeLog Fri Jun 08 13:45:35 2012 -0400 +++ b/ChangeLog Tue Jul 24 10:20:10 2012 -0400 @@ -1,3 +1,8 @@ +2012-07-24 Adam Domurad + + * plugin/icedteanp/IcedTeaPluginUtils.cc + (IcedTeaPluginUtilities::strSplit): Replace usage of " " with proper + delimiter 2012-06-04 Adam Domurad This patch fixes PR518, ensures null termination of strings based off diff -r a8abb4b08bf8 -r a9a689478c96 plugin/icedteanp/IcedTeaPluginUtils.cc --- a/plugin/icedteanp/IcedTeaPluginUtils.cc Fri Jun 08 13:45:35 2012 -0400 +++ b/plugin/icedteanp/IcedTeaPluginUtils.cc Tue Jul 24 10:20:10 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;