summaryrefslogtreecommitdiff
path: root/train_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-03 22:07:40 +0000
committertron <tron@openttd.org>2005-01-03 22:07:40 +0000
commit2f2688b829cc61a453f668a3fa388489ad043528 (patch)
treef79b543714e7dc1d8c4d3ce99194c94edb45f994 /train_gui.c
parent579d51b1b2b0fbaba21f0193576d79498ee0cc70 (diff)
downloadopenttd-2f2688b829cc61a453f668a3fa388489ad043528.tar.xz
(svn r1358) Assert bounds of depot list when searching for a depot
Diffstat (limited to 'train_gui.c')
-rw-r--r--train_gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/train_gui.c b/train_gui.c
index 41335d1b5..b590eb29b 100644
--- a/train_gui.c
+++ b/train_gui.c
@@ -333,7 +333,9 @@ static void DrawTrainDepotWindow(Window *w)
SetHScrollCount(w, hnum);
/* locate the depot struct */
- for(d=_depots; d->xy != (TileIndex)tile; d++) {}
+ for (d = _depots; d->xy != (TileIndex)tile; d++) {
+ assert(d < endof(_depots);
+ }
SetDParam(0, d->town_index);
DrawWindowWidgets(w);