mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-15 19:35:57 +08:00
fix a crash bug when generating support (#8357)
This commit is contained in:
parent
cc92abf8b5
commit
107cd3edb0
@ -337,7 +337,7 @@ public:
|
|||||||
TEdge *p_edge = edges.data();
|
TEdge *p_edge = edges.data();
|
||||||
i = 0;
|
i = 0;
|
||||||
for (const Path &pg : paths_provider) {
|
for (const Path &pg : paths_provider) {
|
||||||
if (num_edges[i]) {
|
if (num_edges[i] && !pg.empty()) {
|
||||||
bool res = AddPathInternal(pg, num_edges[i] - 1, PolyTyp, Closed, p_edge);
|
bool res = AddPathInternal(pg, num_edges[i] - 1, PolyTyp, Closed, p_edge);
|
||||||
if (res) {
|
if (res) {
|
||||||
p_edge += num_edges[i];
|
p_edge += num_edges[i];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user