Commit 400f8591 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix for ticket #752 by ye zhang (yzhang90003 _at_ gmail dot com): VLM RTSP...

Fix for ticket #752 by ye zhang (yzhang90003 _at_ gmail dot com): VLM RTSP concurent LEAVE make VLC crash
parent 243fbff6
......@@ -2468,7 +2468,10 @@ static int Manage( vlc_object_t* p_object )
else
{
if( vlm_MediaControl( vlm, p_media, p_instance->psz_name,
"stop", 0 ) == VLC_SUCCESS ) i--;
"stop", 0 ) == VLC_SUCCESS )
{
j--; /* the aray is one element smaller now. */
}
}
}
}
......
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