Merge pull request #92722 from rune-scape/fix-callable-crash

Fix callable not clearing freed pointer
This commit is contained in:
Rémi Verschelde 2024-06-04 10:16:14 +02:00 committed by GitHub
commit 7b63ac488e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -324,6 +324,7 @@ void Callable::operator=(const Callable &p_callable) {
if (custom->ref_count.unref()) {
memdelete(custom);
custom = nullptr;
}
}
@ -428,6 +429,7 @@ Callable::~Callable() {
if (is_custom()) {
if (custom->ref_count.unref()) {
memdelete(custom);
custom = nullptr;
}
}
}