Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-11-01 16:52:44 +0300
committerbubnikv <bubnikv@gmail.com>2016-11-01 16:52:44 +0300
commit36f51ff2bfb03af88e2121703578817fca13f0d9 (patch)
treefb706a592d92ae50c38eef7aa0dbcc395e6b8d3b
parent0264381f79547b79d7679436893d5973e837111b (diff)
Fixed a return value in the Config multi-string parser.version_1.31.2
-rw-r--r--xs/src/libslic3r/Config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/Config.cpp b/xs/src/libslic3r/Config.cpp
index 6d89735b8..a8dda7379 100644
--- a/xs/src/libslic3r/Config.cpp
+++ b/xs/src/libslic3r/Config.cpp
@@ -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') {