Commit 7fe6a697 authored by Hugo Beauzee-Luyssen's avatar Hugo Beauzee-Luyssen Committed by Rémi Denis-Courmont

Missing loop iterator initialization

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 5a9ba0a5
...@@ -431,7 +431,7 @@ static int AcquireDrawable (vlc_object_t *obj, xcb_window_t window) ...@@ -431,7 +431,7 @@ static int AcquireDrawable (vlc_object_t *obj, xcb_window_t window)
{ {
vlc_value_t val; vlc_value_t val;
xcb_window_t *used; xcb_window_t *used;
size_t n; size_t n = 0;
if (var_Create (obj->p_libvlc, "xid-in-use", VLC_VAR_ADDRESS)) if (var_Create (obj->p_libvlc, "xid-in-use", VLC_VAR_ADDRESS))
return VLC_ENOMEM; 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