[vlc-devel] [PATCH] vout/ios: Fix vlc_obj_calloc argument

Thomas Guillem thomas at gllm.fr
Tue Jun 11 07:54:04 CEST 2019


LGTM

On Fri, Jun 7, 2019, at 19:33, Marvin Scholz wrote:
> ---
>  modules/video_output/ios.m | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/modules/video_output/ios.m b/modules/video_output/ios.m
> index 5bd2a720b1..1971f3bd8f 100644
> --- a/modules/video_output/ios.m
> +++ b/modules/video_output/ios.m
> @@ -148,7 +148,7 @@ static int Open(vout_display_t *vd, const 
> vout_display_cfg_t *cfg,
>      if (vout_display_cfg_IsWindowed(cfg))
>          return VLC_EGENERIC;
>  
> -    vout_display_sys_t *sys = vlc_obj_calloc (this, 1, sizeof(*sys));
> +    vout_display_sys_t *sys = vlc_obj_calloc(vd, 1, sizeof(*sys));
>  
>      if (!sys)
>          return VLC_ENOMEM;
> -- 
> 2.20.1 (Apple Git-117)
> 
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel


More information about the vlc-devel mailing list