summaryrefslogtreecommitdiff
path: root/src/train_cmd.cpp
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2018-10-27 18:13:42 +0100
committerfrosch <github@elsenhans.name>2018-10-31 12:41:49 +0100
commitbb7353c02afd7ff04c4a71cc2b114ed8a6136994 (patch)
treedba608b5d6b84ed30a90a7d9f46c8f565c4efb8d /src/train_cmd.cpp
parent1778b2d66ec21e544e56e5aaaee816cf8fc955af (diff)
downloadopenttd-bb7353c02afd7ff04c4a71cc2b114ed8a6136994.tar.xz
Codechange: Some more null checks
Diffstat (limited to 'src/train_cmd.cpp')
-rw-r--r--src/train_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp
index b1eeab1bd..0672ac209 100644
--- a/src/train_cmd.cpp
+++ b/src/train_cmd.cpp
@@ -874,7 +874,7 @@ static void RemoveFromConsist(Train *part, bool chain = false)
static void InsertInConsist(Train *dst, Train *chain)
{
/* We do not want to add something in the middle of an articulated part. */
- assert(dst->Next() == NULL || !dst->Next()->IsArticulatedPart());
+ assert(dst != NULL && (dst->Next() == NULL || !dst->Next()->IsArticulatedPart()));
chain->Last()->SetNext(dst->Next());
dst->SetNext(chain);