Commit 540f7c1f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Revert commit [12925] - reopens #403

psz_uri is NEEDED - it determines the destination for SAP announces
Go read the code before you commit
parent ec8a1a3e
......@@ -244,10 +244,11 @@ static int announce_SAPAnnounceAdd( sap_handler_t *p_sap,
vlc_mutex_lock( &p_sap->object_lock );
if( p_session->psz_uri == NULL && p_session->psz_sdp == NULL )
if( p_session->psz_uri == NULL )
{
vlc_mutex_unlock( &p_sap->object_lock );
msg_Err( p_sap, "Trying to create a NULL SAP announce" );
msg_Err( p_sap, "*FIXME* Unexpected NULL URI for SAP announce" );
msg_Err( p_sap, "This should not happen. VLC needs fixing." );
return VLC_EGENERIC;
}
......
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