From b89ba85f6f32642998f2c898191c5158a52b57f2 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Sun, 30 Aug 2020 01:52:42 +0200 Subject: [PATCH] Fix crash because of initialized EditorDebuggerPlugin field --- editor/plugins/editor_debugger_plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/editor_debugger_plugin.h b/editor/plugins/editor_debugger_plugin.h index 5536f2daa2..10fd1151de 100644 --- a/editor/plugins/editor_debugger_plugin.h +++ b/editor/plugins/editor_debugger_plugin.h @@ -39,7 +39,7 @@ class EditorDebuggerPlugin : public Control { GDCLASS(EditorDebuggerPlugin, Control); private: - ScriptEditorDebugger *debugger; + ScriptEditorDebugger *debugger = nullptr; void _breaked(bool p_really_did, bool p_can_debug); void _started();