From 4a3a7d5f5d02ce6c160f3f56e94c7e8b84e69b44 Mon Sep 17 00:00:00 2001 From: Koray Kilinc Date: Fri, 24 Jan 2020 09:17:12 -0800 Subject: CPack/DragNDrop: Fix word corruption in BreakLongLines When the lines are wrapped the leading characters of the next word were being lost --- Source/CPack/cmCPackDragNDropGenerator.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/CPack/cmCPackDragNDropGenerator.cxx b/Source/CPack/cmCPackDragNDropGenerator.cxx index 3516235..810ffb9 100644 --- a/Source/CPack/cmCPackDragNDropGenerator.cxx +++ b/Source/CPack/cmCPackDragNDropGenerator.cxx @@ -878,8 +878,9 @@ bool cmCPackDragNDropGenerator::BreakLongLine(const std::string& line, std::string* error) { const size_t max_line_length = 512; - for (size_t i = 0; i < line.size(); i += max_line_length) { - size_t line_length = max_line_length; + size_t line_length = max_line_length; + for (size_t i = 0; i < line.size(); i += line_length) { + line_length = max_line_length; if (i + line_length > line.size()) { line_length = line.size() - i; } else { -- cgit v0.12