From c1d876f5fdb9eab48554b316aea43344cae9105d Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 16 Feb 2023 21:45:48 +0200 Subject: [PATCH] RemoveAll should not have any stack protection or sanitization --- Core/Interrupts/IntManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Interrupts/IntManager.cpp b/Core/Interrupts/IntManager.cpp index 4e85f99d..1052ae72 100644 --- a/Core/Interrupts/IntManager.cpp +++ b/Core/Interrupts/IntManager.cpp @@ -104,7 +104,7 @@ namespace Interrupts #endif } - void RemoveAll() + SafeFunction void RemoveAll() { for (int i = 0; i < CPU::x64::IRQ223; i++) RegisteredEvents->DeleteNode(i);