18 lines
656 B
Diff
18 lines
656 B
Diff
--- qucs-core/src/net.cpp.org 2017-09-13 20:47:24.863069583 +0200
|
|
+++ qucs-core/src/net.cpp 2017-09-10 00:16:48.863636748 +0200
|
|
@@ -350,7 +350,13 @@
|
|
void net::sortChildAnalyses (analysis * parent) {
|
|
ptrlist<analysis> * alist = parent->getAnalysis ();
|
|
if (alist != nullptr) {
|
|
- for (auto *a: *alist) {
|
|
+
|
|
+ for (auto it = alist->begin(); it != alist->end(); /* empty */) {
|
|
+ // Copy the value of the element (a pointer), and advance the
|
|
+ // iterator prior to manipulating the list.
|
|
+ analysis *a = *it;
|
|
+ ++it;
|
|
+
|
|
if (a->getType () == ANALYSIS_DC
|
|
|| containsAnalysis (a, ANALYSIS_DC)) {
|
|
parent->delAnalysis (a);
|