From 7ed804a4bb0dc5c6eecff6a1cf381a02f75305bc Mon Sep 17 00:00:00 2001 From: Filip Hazubski Date: Tue, 31 Aug 2021 11:37:13 +0000 Subject: [PATCH] Correct debugPauseStateAddress initialization Signed-off-by: Filip Hazubski --- shared/source/command_stream/command_stream_receiver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/source/command_stream/command_stream_receiver.h b/shared/source/command_stream/command_stream_receiver.h index bd81174960..a850fcd593 100644 --- a/shared/source/command_stream/command_stream_receiver.h +++ b/shared/source/command_stream/command_stream_receiver.h @@ -296,7 +296,7 @@ class CommandStreamReceiver { uint64_t totalMemoryUsed = 0u; volatile uint32_t *tagAddress = nullptr; - volatile DebugPauseState *debugPauseStateAddress; + volatile DebugPauseState *debugPauseStateAddress = nullptr; SpinLock debugPauseStateLock; static void *asyncDebugBreakConfirmation(void *arg); std::function debugConfirmationFunction = []() { std::cin.get(); };