Commit d316ab1a authored by Francois Cartegnie's avatar Francois Cartegnie

stream_filter: dash: fix out of bounds exception

parent 8b9442ac
...@@ -31,6 +31,11 @@ using namespace dash; ...@@ -31,6 +31,11 @@ using namespace dash;
std::string Helper::combinePaths (const std::string &path1, const std::string &path2) std::string Helper::combinePaths (const std::string &path1, const std::string &path2)
{ {
if ( path2.length() == 0 )
return path1;
else if ( path1.length() == 0 )
return path2;
char path1Last = path1.at(path1.size() - 1); char path1Last = path1.at(path1.size() - 1);
char path2First = path2.at(0); char path2First = path2.at(0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment