Commit f9bb9f99 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

AndroidSurface: fix compilation regression from ffcfa6da

parent 902cc2d4
......@@ -222,7 +222,7 @@ static int Open(vlc_object_t *p_this)
msg_Dbg(vd, "Pixel format %4.4s", (char*)&fmt.i_chroma);
/* Create the associated picture */
picture_sys_t picsys = malloc(sizeof(*picsys));
picture_sys_t *picsys = malloc(sizeof(*picsys));
if (unlikely(picsys == NULL))
goto enomem;
picsys->sys = sys;
......
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