Merge pull request #39910 from starryalley/fix-videoplayer-file-close
VideoStreamGDNative: close file in cleanup()
This commit is contained in:
commit
46b36805d9
1 changed files with 5 additions and 0 deletions
|
@ -214,6 +214,11 @@ void VideoStreamPlaybackGDNative::cleanup() {
|
|||
if (pcm) {
|
||||
memfree(pcm);
|
||||
}
|
||||
if (file) {
|
||||
file->close();
|
||||
memdelete(file);
|
||||
file = nullptr;
|
||||
}
|
||||
pcm = nullptr;
|
||||
time = 0;
|
||||
num_channels = -1;
|
||||
|
|
Loading…
Reference in a new issue