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
commit4b1fb7ff61587472b7cce782fd39e37041ac401a (patch)
tree5b8c27872faf8943144f2948020a199b2cbb85c1 /newgrf_config.h
parentd849b8f66b3e4d569d9c3f6376eabe500a88f018 (diff)
downloadopenttd-4b1fb7ff61587472b7cce782fd39e37041ac401a.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);