From 800c575b13c75e1289be305a65aa0394a21afe7c Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Wed, 4 Nov 2015 09:46:25 -0300 Subject: [PATCH] maybe fix stop issue in theora --- drivers/theora/video_stream_theora.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/theora/video_stream_theora.cpp b/drivers/theora/video_stream_theora.cpp index 2d9f4f9f67..ed87227876 100644 --- a/drivers/theora/video_stream_theora.cpp +++ b/drivers/theora/video_stream_theora.cpp @@ -178,7 +178,7 @@ void VideoStreamPlaybackTheora::video_write(void){ void VideoStreamPlaybackTheora::clear() { - if (file_name == "") + if (!file) return; if(vorbis_p){ @@ -208,6 +208,10 @@ void VideoStreamPlaybackTheora::clear() { frames_pending = 0; videobuf_time = 0; + if (file) { + memdelete(file); + } + file=NULL; playing = false; };