mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06:00
CPack/DragNDrop: Fix word corruption in BreakLongLines
When the lines are wrapped the leading characters of the next word were being lost
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user