Fixed crash on loading GDNative videos.
Fixed issue with loading a resource supported by the gdnative videodecoders that does not exist.
This commit is contained in:
parent
1100d6a8f2
commit
978c2a604a
1 changed files with 1 additions and 1 deletions
|
@ -355,9 +355,9 @@ RES ResourceFormatLoaderVideoStreamGDNative::load(const String &p_path, const St
|
|||
if (r_error) {
|
||||
*r_error = ERR_CANT_OPEN;
|
||||
}
|
||||
memdelete(f);
|
||||
return RES();
|
||||
}
|
||||
memdelete(f);
|
||||
VideoStreamGDNative *stream = memnew(VideoStreamGDNative);
|
||||
stream->set_file(p_path);
|
||||
Ref<VideoStreamGDNative> ogv_stream = Ref<VideoStreamGDNative>(stream);
|
||||
|
|
Loading…
Reference in a new issue