(svn r4459) - Newstations: check pointer for NULL before using it.
--- a/newgrf_station.c Mon Apr 17 17:59:42 2006 +0000
+++ b/newgrf_station.c Mon Apr 17 18:35:44 2006 +0000
@@ -117,6 +117,7 @@
static const RealSpriteGroup *ResolveStationSpriteGroup(const SpriteGroup *spg, const Station *st)
{
+ if (spg == NULL) return NULL;
switch (spg->type) {
case SGT_REAL:
return &spg->g.real;
@@ -183,6 +184,7 @@
uint32 GetCustomStationRelocation(const StationSpec *spec, const Station *st, byte ctype)
{
const RealSpriteGroup *rsg = ResolveStationSpriteGroup(spec->spritegroup[ctype], st);
+ if (rsg == NULL) return 0;
if (rsg->sprites_per_set != 0) {
if (rsg->loading_count != 0) return rsg->loading[0]->g.result.result;