Commit aa389eb5 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

sap: Set the sap announcer object name.

parent fa9d4d05
......@@ -120,13 +120,14 @@ sap_handler_t *announce_SAPHandlerCreate( announce_handler_t *p_announce )
sap_handler_t *p_sap;
p_sap = vlc_object_create( p_announce, sizeof( sap_handler_t ) );
if( !p_sap )
{
msg_Err( p_announce, "out of memory" );
return NULL;
}
p_sap->psz_object_name = "sap announcer";
vlc_mutex_init( p_sap, &p_sap->object_lock );
p_sap->pf_add = announce_SAPAnnounceAdd;
......
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