Skip to content
Snippets Groups Projects
Commit 6873c241 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

vdr: really fix sizeof mismatch

parent fd21eb02
No related branches found
No related tags found
No related merge requests found
......@@ -294,7 +294,7 @@ static int Control( access_t *p_access, int i_query, va_list args )
return VLC_EGENERIC;
ppp_title = va_arg( args, input_title_t*** );
*va_arg( args, int* ) = 1;
*ppp_title = malloc( sizeof( *ppp_title ) );
*ppp_title = malloc( sizeof( **ppp_title ) );
if( !*ppp_title )
return VLC_ENOMEM;
**ppp_title = vlc_input_title_Duplicate( p_sys->p_marks );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment