Open
Description
Application Version
4.3.0
Platform
linux
memory leak in infill.cpp:640, run curaengine with valgrind:
InfillLineSegment* new_segment = new InfillLineSegment(unrotated_first, first.vertex_index, first.polygon_index, unrotated_second, second.vertex_index, second.polygon_index);
//Put the same line segment in the data structure twice: Once for each of the polygon line segment that it crosses.
crossings_on_line[first.polygon_index][first.vertex_index].push_back(new_segment);
crossings_on_line[second.polygon_index][second.vertex_index].push_back(new_segment);