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

When checking for filters overflow, actually handle the error (CID 48)

parent 7c2d9c9b
...@@ -148,6 +148,8 @@ int spu_ParseChain( spu_t *p_spu ) ...@@ -148,6 +148,8 @@ int spu_ParseChain( spu_t *p_spu )
p_spu->pp_filter[p_spu->i_filter]->p_module = p_spu->pp_filter[p_spu->i_filter]->p_module =
module_Need( p_spu->pp_filter[p_spu->i_filter], module_Need( p_spu->pp_filter[p_spu->i_filter],
"sub filter", psz_name, true ); "sub filter", psz_name, true );
free( psz_name );
if( p_spu->pp_filter[p_spu->i_filter]->p_module ) if( p_spu->pp_filter[p_spu->i_filter]->p_module )
{ {
filter_owner_sys_t *p_sys = malloc( sizeof(filter_owner_sys_t) ); filter_owner_sys_t *p_sys = malloc( sizeof(filter_owner_sys_t) );
...@@ -170,9 +172,9 @@ int spu_ParseChain( spu_t *p_spu ) ...@@ -170,9 +172,9 @@ int spu_ParseChain( spu_t *p_spu )
if( p_spu->i_filter >= 10 ) if( p_spu->i_filter >= 10 )
{ {
msg_Dbg( p_spu, "can't add anymore filters" ); msg_Dbg( p_spu, "can't add anymore filters" );
break;
} }
free( psz_name );
} }
free( val.psz_string ); free( val.psz_string );
......
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