Commit 7301b09f authored by Gildas Bazin's avatar Gildas Bazin

* modules/mux/mp4.c:fixed a minor mem leak.

parent e15e300e
...@@ -279,6 +279,7 @@ static void Close( vlc_object_t * p_this ) ...@@ -279,6 +279,7 @@ static void Close( vlc_object_t * p_this )
msg_Warn( p_this, "read() not supported by acces output, " msg_Warn( p_this, "read() not supported by acces output, "
"won't create a fast start file" ); "won't create a fast start file" );
p_sys->b_fast_start = VLC_FALSE; p_sys->b_fast_start = VLC_FALSE;
block_Release( p_buf );
break; break;
} }
sout_AccessOutSeek( p_mux->p_access, p_sys->i_mdat_pos + i_size + sout_AccessOutSeek( p_mux->p_access, p_sys->i_mdat_pos + i_size +
......
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