From 23911100dbb7f4ccd266e22feedd2767baee292c Mon Sep 17 00:00:00 2001 From: arpi Date: Sun, 31 Mar 2002 02:22:40 +0000 Subject: [PATCH] 1 step closed to solving memory corruptions git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5412 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mplayer.c b/mplayer.c index c05cebb755..b1dd5417a7 100644 --- a/mplayer.c +++ b/mplayer.c @@ -306,6 +306,7 @@ void uninit_player(unsigned int mask){ inited_flags&=~INITED_SPUDEC; current_module="uninit_spudec"; spudec_free(vo_spudec); + vo_spudec=NULL; } #endif if(mask&INITED_VO){ @@ -1120,10 +1121,10 @@ if (vo_spudec==NULL) { current_module="spudec_init"; vo_spudec=spudec_new_scaled(stream->type==STREAMTYPE_DVD?((dvd_priv_t *)(stream->priv))->cur_pgc->palette:NULL, sh_video->disp_w, sh_video->disp_h); -if (vo_spudec!=NULL) - inited_flags|=INITED_SPUDEC; } #endif +if (vo_spudec!=NULL) + inited_flags|=INITED_SPUDEC; #ifdef USE_SUB // after reading video params we should load subtitles because @@ -2789,12 +2790,15 @@ if(use_gui || playtree_iter != NULL current_module="uninit_vcodec"; if(sh_video) uninit_video(sh_video); + sh_video=NULL; current_module="free_demuxer"; if(demuxer) free_demuxer(demuxer); + demuxer=NULL; current_module="free_stream"; if(stream) free_stream(stream); + stream=NULL; current_module="sub_free"; if ( subtitles )