Commit 5043b4c8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

lua: fix potentially uninitialized value

parent 935211ca
......@@ -350,7 +350,7 @@ static int vlclua_net_poll( lua_State *L )
}
vlc_interrupt_t *oint = vlclua_set_interrupt( L );
int ret = 1, val;
int ret = 1, val = -1;
do
{
......
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