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;