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

Fix access_filter_record allocation size (fixes #2229)

(does not apply to trunk)
parent 5223c139
......@@ -133,7 +133,7 @@ static int Open( vlc_object_t *p_this )
p_access->info = p_src->info;
p_access->p_sys = p_sys = malloc( sizeof( access_t ) );
p_access->p_sys = p_sys = malloc( sizeof( *p_sys ) );
if( !p_sys ) return VLC_ENOMEM;
/* */
......
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