From ab7e36dda704a3ed47ceaf2abb903079d1bea3df Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 6 Aug 2007 14:08:25 +0000 Subject: (svn r10813) -Fix (r10799): some destructors were performing too much during the pool cleanups, which could cause crashes as already removed pool items could then be dereferenced by other destructors. --- src/industry_cmd.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/industry_cmd.cpp') diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index c46cbac51..a592642dd 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -130,6 +130,8 @@ const IndustryTileSpec *GetIndustryTileSpec(IndustryGfx gfx, bool full_check) Industry::~Industry() { + if (CleaningPool()) return; + /* Industry can also be destroyed when not fully initialized. * This means that we do not have to clear tiles either. */ if (this->width == 0) { -- cgit v1.2.3-54-g00ecf