Commit 7b9cc3cf authored by Gildas Bazin's avatar Gildas Bazin

* modules/demux/livedotcom.cpp: fixed small leak.

parent de32e7d1
...@@ -390,6 +390,7 @@ static int Open ( vlc_object_t *p_this ) ...@@ -390,6 +390,7 @@ static int Open ( vlc_object_t *p_this )
if( !p_sys->rtsp->playMediaSession( *p_sys->ms ) ) if( !p_sys->rtsp->playMediaSession( *p_sys->ms ) )
{ {
msg_Err( p_demux, "PLAY failed %s", p_sys->env->getResultMsg() ); msg_Err( p_demux, "PLAY failed %s", p_sys->env->getResultMsg() );
delete iter;
goto error; goto error;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment