diff options
author | Samuele Panzeri <samuele.panzeri@gmail.com> | 2023-04-27 18:34:30 +0200 |
---|---|---|
committer | Samuele Panzeri <samuele.panzeri@gmail.com> | 2023-04-27 20:28:22 +0200 |
commit | 4aaa2e6477c2536d55003f58a50b01a74b4af5e5 (patch) | |
tree | 7eba64423370776fa9dab607246b371217ae4f24 /platform/ios/export | |
parent | 240ed28291ae87f06f7bcaa66e3d08530f210bf2 (diff) | |
download | redot-engine-4aaa2e6477c2536d55003f58a50b01a74b4af5e5.tar.gz |
Fix wait for thread not started
Diffstat (limited to 'platform/ios/export')
-rw-r--r-- | platform/ios/export/export_plugin.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp index 1b925ff3e3..9c0e4e39e8 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -1984,6 +1984,8 @@ EditorExportPlatformIOS::EditorExportPlatformIOS() { EditorExportPlatformIOS::~EditorExportPlatformIOS() { #ifndef ANDROID_ENABLED quit_request.set(); - check_for_changes_thread.wait_to_finish(); + if (check_for_changes_thread.is_started()) { + check_for_changes_thread.wait_to_finish(); + } #endif } |