Merge pull request #37159 from ThakeeNathees/f8-stop-process-crash-fix

Fix editor crash when stopping game with F8.
This commit is contained in:
Fabio Alessandrelli 2020-03-19 16:51:41 +01:00 committed by GitHub
commit 10dd73c868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -810,7 +810,7 @@ void ScriptEditorDebugger::_notification(int p_what) {
const uint64_t until = OS::get_singleton()->get_ticks_msec() + 20;
while (peer->has_message()) {
while (peer.is_valid() && peer->has_message()) {
Array arr = peer->get_message();
if (arr.size() != 2 || arr[0].get_type() != Variant::STRING || arr[1].get_type() != Variant::ARRAY) {