summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-24 17:02:59 +0000
committerrubidium <rubidium@openttd.org>2009-01-24 17:02:59 +0000
commit851b243f01b64109fb9a3098c5cd8d3122d1f233 (patch)
tree3ac42b0bd92a4b2084727c16f9fd0fc978791865 /src/newgrf.cpp
parentdbc4a8b331ed1bb37f234cfaafb8ff23588730bb (diff)
downloadopenttd-851b243f01b64109fb9a3098c5cd8d3122d1f233.tar.xz
(svn r15259) -Fix: [NewGRF] small memory leak when scanning labels
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 7618bd005..99774c397 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -6169,6 +6169,9 @@ void LoadNewGRF(uint load_index, uint file_index)
ClearTemporaryNewGRFData(_cur_grffile);
BuildCargoTranslationMap();
DEBUG(sprite, 2, "LoadNewGRF: Currently %i sprites are loaded", _cur_spriteid);
+ } else if (stage == GLS_INIT && HasBit(c->flags, GCF_INIT_ONLY)) {
+ /* We're not going to activate this, so free whatever data we allocated */
+ ClearTemporaryNewGRFData(_cur_grffile);
}
}
}