summaryrefslogtreecommitdiff
path: root/ship_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 /ship_gui.c
parent579d51b1b2b0fbaba21f0193576d79498ee0cc70 (diff)
downloadopenttd-2f2688b829cc61a453f668a3fa388489ad043528.tar.xz
(svn r1358) Assert bounds of depot list when searching for a depot
Diffstat (limited to 'ship_gui.c')
-rw-r--r--ship_gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ship_gui.c b/ship_gui.c
index 959cbd0ec..e90077aed 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -646,7 +646,9 @@ static void DrawShipDepotWindow(Window *w)
SetVScrollCount(w, (num + w->hscroll.cap - 1) / w->hscroll.cap);
/* 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);