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

Remove two possibly wild references to psz_object_name

parent 0b5502c3
...@@ -412,16 +412,15 @@ static int filter_chain_DeleteFilterInternal( filter_chain_t *p_chain, ...@@ -412,16 +412,15 @@ static int filter_chain_DeleteFilterInternal( filter_chain_t *p_chain,
/* Oops, filter wasn't found /* Oops, filter wasn't found
* FIXME shoulnd't it be an assert instead ? */ * FIXME shoulnd't it be an assert instead ? */
msg_Err( p_chain->p_this, msg_Err( p_chain->p_this,
"Couldn't find filter '%s' (%p) when trying to remove it from chain", "Couldn't find filter %p when trying to remove it from chain",
p_filter->psz_object_name, p_filter ); p_filter );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
/* Remove it from the chain */ /* Remove it from the chain */
vlc_array_remove( &p_chain->filters, i_filter_idx ); vlc_array_remove( &p_chain->filters, i_filter_idx );
msg_Dbg( p_chain->p_this, "Filter '%s' (%p) removed from chain", msg_Dbg( p_chain->p_this, "Filter %p removed from chain", p_filter );
p_filter->psz_object_name, p_filter );
/* Destroy the filter object */ /* Destroy the filter object */
if( IsInternalVideoAllocator( p_filter ) ) if( IsInternalVideoAllocator( p_filter ) )
......
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