train_gui.c
branch0.4
changeset 9977 3ed9f10aa279
parent 9959 984493ab6fff
--- a/train_gui.c	Tue May 02 12:42:21 2006 +0000
+++ b/train_gui.c	Tue May 02 12:44:55 2006 +0000
@@ -518,13 +518,10 @@
 		return (x >= -10) ? -2 : -1;
 
 	// skip vehicles that are scrolled off the left side
-	while (skip--) v = v->next;
+	while (v != NULL && skip--) v = v->next;
 
 	/* find the vehicle in this row that was clicked */
-	while ((x -= WagonLengthToPixels(v->u.rail.cached_veh_length)) >= 0) {
-		v = v->next;
-		if (v == NULL) break;
-	}
+	while (v != NULL && (x -= WagonLengthToPixels(v->u.rail.cached_veh_length)) >= 0) v = v->next;
 
 	// if an articulated part was selected, find its parent
 	while (v != NULL && IsArticulatedPart(v)) v = GetPrevVehicleInChain(v);