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

Simplify

parent 421a14db
...@@ -258,7 +258,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -258,7 +258,7 @@ static int Open( vlc_object_t * p_this )
case VLC_FOURCC( 'm', 'p', 'g', 'a' ): case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
case VLC_FOURCC( 'a', '5', '2', ' ' ): case VLC_FOURCC( 'a', '5', '2', ' ' ):
/* FIXME set end of area FIXME */ /* FIXME set end of area FIXME */
goto relay; goto error;
default: default:
msg_Err( p_demux, "unsupported codec (%4.4s)", msg_Err( p_demux, "unsupported codec (%4.4s)",
(char*)&p_sys->fmt.i_codec ); (char*)&p_sys->fmt.i_codec );
...@@ -290,7 +290,6 @@ static int Open( vlc_object_t * p_this ) ...@@ -290,7 +290,6 @@ static int Open( vlc_object_t * p_this )
error: error:
free( p_wf ); free( p_wf );
relay:
free( p_sys ); free( p_sys );
return VLC_EGENERIC; 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