Skip to content

Commit 36f51ff

Browse files
committed
Fixed a return value in the Config multi-string parser.
1 parent 0264381 commit 36f51ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xs/src/libslic3r/Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ bool unescape_strings_cstyle(const std::string &str, std::vector<std::string> &o
143143
// Store the string into the output vector.
144144
out.push_back(std::string(buf.data(), buf.size()));
145145
if (i == str.size())
146-
break;
146+
return true;
147147
// Skip white spaces.
148148
c = str[i];
149149
while (c == ' ' || c == '\t') {

0 commit comments

Comments
 (0)