diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2021-10-29 18:42:57 -0700 |
---|---|---|
committer | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2022-05-17 08:50:32 -0700 |
commit | ec8e91e3cd1486e2134f92c2f393ce56d153841b (patch) | |
tree | 9b2dcc62230cfc22faf164fcfe6e4c7b215e8e94 /editor/editor_help_search.h | |
parent | 35004aea48011296b9461c3c4e14100b8d686191 (diff) | |
download | redot-engine-ec8e91e3cd1486e2134f92c2f393ce56d153841b.tar.gz |
Fix editor crash in built-in help when script inheritance chain changes.
Diffstat (limited to 'editor/editor_help_search.h')
-rw-r--r-- | editor/editor_help_search.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help_search.h b/editor/editor_help_search.h index 7b7235145a..3f17c992ac 100644 --- a/editor/editor_help_search.h +++ b/editor/editor_help_search.h @@ -99,7 +99,7 @@ class EditorHelpSearch::Runner : public RefCounted { int phase = 0; struct ClassMatch { - DocData::ClassDoc *doc; + DocData::ClassDoc *doc = nullptr; bool name = false; Vector<DocData::MethodDoc *> constructors; Vector<DocData::MethodDoc *> methods; |