[vlc-commits] fb: fix missing initializer
    Rémi Denis-Courmont 
    git at videolan.org
       
    Wed Dec 12 19:43:59 CET 2018
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Dec 12 20:28:30 2018 +0200| [cdbc80aff4453a9edce7fedcc0df44458dfffa97] | committer: Rémi Denis-Courmont
fb: fix missing initializer
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cdbc80aff4453a9edce7fedcc0df44458dfffa97
---
 modules/video_output/fb.c | 1 +
 1 file changed, 1 insertion(+)
diff --git a/modules/video_output/fb.c b/modules/video_output/fb.c
index 46d04bc7d3..b611efe585 100644
--- a/modules/video_output/fb.c
+++ b/modules/video_output/fb.c
@@ -590,6 +590,7 @@ static int OpenDisplay(vout_display_t *vd, bool force_resolution)
     picture_resource_t rsc = {
        .p = {
            [0] = {
+               .p_pixels = sys->video_ptr,
                .i_lines = sys->var_info.yres,
                .i_pitch = fix_info.line_length,
            },
    
    
More information about the vlc-commits
mailing list