Commit 5f74c08b authored by Rémi Duraffort's avatar Rémi Duraffort

Lua: Fix memory leak (cid #1100856)

parent cdd7148a
......@@ -369,6 +369,7 @@ static int vlclua_net_poll( lua_State *L )
i_ret = luaL_error( L, "Interrupted." );
else
i_ret = 1;
free( luafds );
free( p_fds );
return i_ret;
......
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