mirror of https://github.com/OpenTTD/OpenTTD
Fix: Add virtual destructor to link graph Path.
Classes derived from Path were freed through base class pointer, but no virtual destructor was present.pull/9041/head
parent
433602b072
commit
4cd9e0f41b
|
@ -367,6 +367,7 @@ public:
|
|||
static Path *invalid_path;
|
||||
|
||||
Path(NodeID n, bool source = false);
|
||||
virtual ~Path() = default;
|
||||
|
||||
/** Get the node this leg passes. */
|
||||
inline NodeID GetNode() const { return this->node; }
|
||||
|
|
Loading…
Reference in New Issue