summaryrefslogtreecommitdiff
path: root/src/linkgraph/linkgraphjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/linkgraph/linkgraphjob.cpp')
-rw-r--r--src/linkgraph/linkgraphjob.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/linkgraph/linkgraphjob.cpp b/src/linkgraph/linkgraphjob.cpp
index 2feaa8b92..4f583e04a 100644
--- a/src/linkgraph/linkgraphjob.cpp
+++ b/src/linkgraph/linkgraphjob.cpp
@@ -72,7 +72,19 @@ LinkGraphJob::~LinkGraphJob()
}
}
- ge.flows.swap(flows);
+ /* Swap shares and invalidate ones that are completely deleted. Don't
+ * really delete them as we could then end up with unroutable cargo
+ * somewhere. */
+ for (FlowStatMap::iterator it(ge.flows.begin()); it != ge.flows.end(); ++it) {
+ FlowStatMap::iterator new_it = flows.find(it->first);
+ if (new_it == flows.end()) {
+ it->second.Invalidate();
+ } else {
+ it->second.SwapShares(new_it->second);
+ flows.erase(new_it);
+ }
+ }
+ ge.flows.insert(flows.begin(), flows.end());
InvalidateWindowData(WC_STATION_VIEW, st->index, this->Cargo());
}
}