From ae375cc322c5ee090c21ff4a04e54ef4422020cc Mon Sep 17 00:00:00 2001 From: Kahrl Date: Mon, 20 Oct 2014 16:11:00 +0200 Subject: [PATCH] Fix memory leak caused by mesh nodes (and nodeboxes) --- src/nodedef.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/nodedef.cpp b/src/nodedef.cpp index 5735ef91..ee550523 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -171,6 +171,12 @@ ContentFeatures::ContentFeatures() ContentFeatures::~ContentFeatures() { +#ifndef SERVER + for (u32 i = 0; i < 24; i++) { + if (mesh_ptr[i]) + mesh_ptr[i]->drop(); + } +#endif } void ContentFeatures::reset()