summaryrefslogtreecommitdiff
path: root/src/util/serialize.h
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-05-29 16:00:44 +0200
committersfan5 <sfan5@live.de>2022-05-29 16:30:13 +0200
commit9fc018ded10225589d2559d24a5db739e891fb31 (patch)
tree7cba6dc169414cc2c0c18703355b32064dcb40f2 /src/util/serialize.h
parenta9a207685a9d55e4fcdd97f5065383e2ec18e114 (diff)
downloadminetest-9fc018ded10225589d2559d24a5db739e891fb31.tar.gz
minetest-9fc018ded10225589d2559d24a5db739e891fb31.tar.bz2
minetest-9fc018ded10225589d2559d24a5db739e891fb31.zip
Fix use-after-free in node meta cleanup
bug introduced in 8908a9101608d3343023b470743ef63f1c44b0b7
Diffstat (limited to 'src/util/serialize.h')
0 files changed, 0 insertions, 0 deletions
of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "irrlichttypes.h" #include <cassert> #include <string> #include <map> #include <ostream> #include "threading/mutex_auto_lock.h" #include "util/timetaker.h" #include "util/numeric.h" // paging() // Global profiler class Profiler; extern Profiler *g_profiler; /* Time profiler */ class Profiler { public: Profiler();