mirror of
https://github.com/godotengine/godot.git
synced 2026-01-08 00:25:01 +03:00
Fix crash on signal/resume to dangling target
(cherry picked from commit 06b6cea62e)
This commit is contained in:
committed by
Rémi Verschelde
parent
a1b0e7b12c
commit
94476aba94
@@ -174,15 +174,13 @@ private:
|
||||
public:
|
||||
struct CallState {
|
||||
|
||||
ObjectID instance_id; //by debug only
|
||||
ObjectID script_id;
|
||||
|
||||
ObjectID instance_id;
|
||||
GDScriptInstance *instance;
|
||||
Vector<uint8_t> stack;
|
||||
int stack_size;
|
||||
Variant self;
|
||||
uint32_t alloca_size;
|
||||
GDScript *_class;
|
||||
Ref<GDScript> script;
|
||||
int ip;
|
||||
int line;
|
||||
int defarg;
|
||||
|
||||
Reference in New Issue
Block a user