fixed AStar improper point deletion (leads to crash)
This commit is contained in:
parent
9714f701c5
commit
c496781bf6
@ -97,11 +97,14 @@ void AStar::remove_point(int p_id) {
|
|||||||
|
|
||||||
Point *p = points[p_id];
|
Point *p = points[p_id];
|
||||||
|
|
||||||
for (Set<Point *>::Element *E = p->neighbours.front(); E; E = E->next()) {
|
Map<int, Point *>::Element *PE = points.front();
|
||||||
|
while (PE) {
|
||||||
Segment s(p_id, E->get()->id);
|
for (Set<Point *>::Element *E = PE->get()->neighbours.front(); E; E = E->next()) {
|
||||||
segments.erase(s);
|
Segment s(p_id, E->get()->id);
|
||||||
E->get()->neighbours.erase(p);
|
segments.erase(s);
|
||||||
|
E->get()->neighbours.erase(p);
|
||||||
|
}
|
||||||
|
PE = PE->next();
|
||||||
}
|
}
|
||||||
|
|
||||||
memdelete(p);
|
memdelete(p);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user