diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2020-11-17 10:13:41 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2020-11-17 10:13:41 +0100 |
commit | 9450717571c1b1cd43be5b188e55442dcd412c51 (patch) | |
tree | 846ba58cc78016feb15750336c5a3a0238cc0e92 /core/io | |
parent | b4a066188579458412159e35c697070cb5e77070 (diff) |
Fix crash in resoure duplicate
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/resource.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/io/resource.cpp b/core/io/resource.cpp index 5b249f7af3..08f5021889 100644 --- a/core/io/resource.cpp +++ b/core/io/resource.cpp @@ -209,8 +209,8 @@ Ref<Resource> Resource::duplicate(bool p_subresources) const { List<PropertyInfo> plist; get_property_list(&plist); - Resource *r = (Resource *)ClassDB::instance(get_class()); - ERR_FAIL_COND_V(!r, Ref<Resource>()); + Ref<Resource> r = (Resource *)ClassDB::instance(get_class()); + ERR_FAIL_COND_V(r.is_null(), Ref<Resource>()); for (List<PropertyInfo>::Element *E = plist.front(); E; E = E->next()) { if (!(E->get().usage & PROPERTY_USAGE_STORAGE)) { @@ -230,7 +230,7 @@ Ref<Resource> Resource::duplicate(bool p_subresources) const { } } - return Ref<Resource>(r); + return r; } void Resource::_set_path(const String &p_path) { |