mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 02:11:04 +02:00
try to fix segfault with --enable-cleanup
Origin commit data
------------------
Branch: ni/coolstream
Commit: e908858c19
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2017-02-17 (Fri, 17 Feb 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -118,17 +118,24 @@ CMoviePlayerGui::CMoviePlayerGui()
|
|||||||
|
|
||||||
CMoviePlayerGui::~CMoviePlayerGui()
|
CMoviePlayerGui::~CMoviePlayerGui()
|
||||||
{
|
{
|
||||||
//playback->Close();
|
|
||||||
if (this == instance_mp)
|
if (this == instance_mp)
|
||||||
stopPlayBack();
|
stopPlayBack();
|
||||||
delete moviebrowser;
|
if(moviebrowser){
|
||||||
moviebrowser = NULL;
|
delete moviebrowser;
|
||||||
delete filebrowser;
|
moviebrowser = NULL;
|
||||||
filebrowser = NULL;
|
}
|
||||||
delete bookmarkmanager;
|
if(filebrowser){
|
||||||
bookmarkmanager = NULL;
|
delete filebrowser;
|
||||||
delete playback;
|
filebrowser = NULL;
|
||||||
playback = NULL;
|
}
|
||||||
|
if(bookmarkmanager){
|
||||||
|
delete bookmarkmanager;
|
||||||
|
bookmarkmanager = NULL;
|
||||||
|
}
|
||||||
|
if(playback){
|
||||||
|
delete playback;
|
||||||
|
playback = NULL;
|
||||||
|
}
|
||||||
if (this == instance_mp) {
|
if (this == instance_mp) {
|
||||||
delete instance_bg;
|
delete instance_bg;
|
||||||
instance_bg = NULL;
|
instance_bg = NULL;
|
||||||
|
Reference in New Issue
Block a user