summaryrefslogtreecommitdiff
path: root/industry_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-10-31 21:15:56 +0000
committerDarkvater <darkvater@openttd.org>2006-10-31 21:15:56 +0000
commiteadf788cc5d068622f20221566f4027625090689 (patch)
treef1aae895580a4a2bc7864f645fae39e9c2bc7669 /industry_gui.c
parent993cb13c8dde55d77b732bba55bf3c94b0ea9216 (diff)
downloadopenttd-eadf788cc5d068622f20221566f4027625090689.tar.xz
(svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
invalid players (eg spectators) which could lead to crashes.
Diffstat (limited to 'industry_gui.c')
-rw-r--r--industry_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/industry_gui.c b/industry_gui.c
index b2db3252a..9a650e6ae 100644
--- a/industry_gui.c
+++ b/industry_gui.c
@@ -268,7 +268,7 @@ static const WindowDesc * const _industry_window_desc[2][4] = {
void ShowBuildIndustryWindow(void)
{
- if (_current_player == PLAYER_SPECTATOR) return;
+ if (!IsValidPlayer(_current_player)) return;
AllocateWindowDescFront(_industry_window_desc[_patches.build_rawmaterial_ind][_opt_ptr->landscape],0);
}