From 5a0c186bc06023e9c54b1deb4965fbdcb3607ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Fri, 5 May 2023 19:39:11 +0200 Subject: [PATCH] Avoid redundant locking in CallQueue --- core/object/message_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/object/message_queue.h b/core/object/message_queue.h index 68969dfd392..2349c6d8691 100644 --- a/core/object/message_queue.h +++ b/core/object/message_queue.h @@ -61,7 +61,7 @@ private: }; Mutex mutex; - typedef PagedAllocator Allocator; + typedef PagedAllocator Allocator; Allocator *allocator = nullptr; bool allocator_is_custom = false;