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

Use module_Put

parent 07f9a186
...@@ -233,11 +233,11 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add ) ...@@ -233,11 +233,11 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
} }
else else
{ {
vlc_object_release( p_obj ); module_Put( p_obj );
msg_Err( p_intf, "Unknown video filter type." ); msg_Err( p_intf, "Unknown video filter type." );
return; return;
} }
vlc_object_release( p_obj ); module_Put( p_obj );
psz_string = config_GetPsz( p_intf, psz_filter_type ); psz_string = config_GetPsz( p_intf, psz_filter_type );
......
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