Преглед изворни кода

Fix: editor crash on super constructor called

Fix: #39909
Thakee Nathees пре 5 година
родитељ
комит
023b3f2786
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      modules/gdscript/gdscript_parser.cpp

+ 3 - 0
modules/gdscript/gdscript_parser.cpp

@@ -4072,6 +4072,9 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
 								while (true) {
 									current_function = function;
 									Node *arg = _parse_and_reduce_expression(p_class, _static);
+									if (!arg) {
+										return;
+									}
 									current_function = nullptr;
 									cparent->arguments.push_back(arg);