Skip to content

Commit

Permalink
Fixed a return value in the Config multi-string parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
bubnikv committed Nov 1, 2016
1 parent 0264381 commit 36f51ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xs/src/libslic3r/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ bool unescape_strings_cstyle(const std::string &str, std::vector<std::string> &o
// Store the string into the output vector.
out.push_back(std::string(buf.data(), buf.size()));
if (i == str.size())
break;
return true;
// Skip white spaces.
c = str[i];
while (c == ' ' || c == '\t') {
Expand Down

0 comments on commit 36f51ff

Please sign in to comment.