From f8dc5cedc1af12064f7512d0f843d2abcd004ed3 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 8 Apr 2020 16:11:05 -0700 Subject: [PATCH] revert check --- actionlist.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/actionlist.cc b/actionlist.cc index 68345986..52569447 100644 --- a/actionlist.cc +++ b/actionlist.cc @@ -226,8 +226,7 @@ void actionlist::removeAction(ModelAction * act) { void actionlist::clear() { for(uint i = 0;i < ALLNODESIZE;i++) { if (root.children[i] != NULL) { - if (!(((uintptr_t) root.children[i]) & ISACT)) - delete root.children[i]; + delete root.children[i]; root.children[i] = NULL; } } -- 2.34.1