From b4485a3498abad13c4bee652577d09550a510f03 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 6 Jan 2021 22:39:55 -0600 Subject: [PATCH] fix(list): add missing flag to new node allocations --- storm/list/TSList.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storm/list/TSList.hpp b/storm/list/TSList.hpp index 7120b7b..781c132 100644 --- a/storm/list/TSList.hpp +++ b/storm/list/TSList.hpp @@ -171,7 +171,7 @@ int32_t TSList::MemLineNo() const { template T* TSList::NewNode(uint32_t location, size_t extrabytes, uint32_t flags) { - void* m = SMemAlloc(sizeof(T) + extrabytes, this->MemFileName(), this->MemLineNo(), flags); + void* m = SMemAlloc(sizeof(T) + extrabytes, this->MemFileName(), this->MemLineNo(), flags | 0x8); T* node;