1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix memory leak in EmergeManager

This commit is contained in:
PilzAdam 2014-07-06 15:41:56 +02:00
parent 37b7f094e3
commit 6bd15247f9

View file

@ -156,6 +156,11 @@ EmergeManager::~EmergeManager() {
mglist.clear(); mglist.clear();
delete biomedef; delete biomedef;
if (params.sparams) {
delete params.sparams;
params.sparams = NULL;
}
} }