summaryrefslogtreecommitdiff
path: root/newgrf_config.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-12-20 21:17:33 +0000
committerDarkvater <darkvater@openttd.org>2006-12-20 21:17:33 +0000
commit28042b65ac4574a3bcf3fa2ff206e62f498492b2 (patch)
tree5b8c27872faf8943144f2948020a199b2cbb85c1 /newgrf_config.h
parent1812bcfc8c20dfea2df38da7f7b042c2d62f551b (diff)
downloadopenttd-28042b65ac4574a3bcf3fa2ff206e62f498492b2.tar.xz
(svn r7518) -Codechange: more NULL pointer resets after free.
Diffstat (limited to 'newgrf_config.h')
-rw-r--r--newgrf_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newgrf_config.h b/newgrf_config.h
index c6f49bb60..b0660e3a6 100644
--- a/newgrf_config.h
+++ b/newgrf_config.h
@@ -45,7 +45,7 @@ const GRFConfig *FindGRFConfig(uint32 grfid, uint8 *md5sum);
GRFConfig *GetGRFConfig(uint32 grfid);
GRFConfig **CopyGRFConfigList(GRFConfig **dst, const GRFConfig *src);
void ClearGRFConfig(GRFConfig **config);
-void ClearGRFConfigList(GRFConfig *config);
+void ClearGRFConfigList(GRFConfig **config);
void ResetGRFConfig(bool defaults);
bool IsGoodGRFConfigList(void);
bool FillGRFDetails(GRFConfig *config, bool is_static);