From 6b546a604889e4b9a94891c31b1af11812bfc241 Mon Sep 17 00:00:00 2001 From: Thierry FOURNIER Date: Sun, 16 Jul 2017 16:35:53 +0200 Subject: [PATCH] BUG/MINOR: Lua: variable already initialized The variable strm->hlua is already initilized by the function stream_new(). --- src/hlua.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hlua.c b/src/hlua.c index 71812a6..35acff7 100644 --- a/src/hlua.c +++ b/src/hlua.c @@ -2356,7 +2356,6 @@ __LJMP static int hlua_socket_new(lua_State *L) /* Configure an empty Lua for the stream. */ socket->s = strm; - strm->hlua = NULL; /* Configure "right" stream interface. this "si" is used to connect * and retrieve data from the server. The connection is initialized -- 1.7.10.4