Browse Source

Merge pull request #39910 from starryalley/fix-videoplayer-file-close

VideoStreamGDNative: close file in cleanup()
Rémi Verschelde 5 years ago
parent
commit
46b36805d9
1 changed files with 5 additions and 0 deletions
  1. 5 0
      modules/gdnative/videodecoder/video_stream_gdnative.cpp

+ 5 - 0
modules/gdnative/videodecoder/video_stream_gdnative.cpp

@@ -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;