From: Vsevolod Stakhov Date: Sat, 2 Jul 2022 13:35:53 +0000 (+0100) Subject: [Minor] Initialise variable X-Git-Tag: 3.3~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84e869eb4b74363b86c1da364e7063a82bc9375b;p=thirdparty%2Frspamd.git [Minor] Initialise variable --- diff --git a/src/lua/lua_tcp.c b/src/lua/lua_tcp.c index e839aba24f..6391e4e117 100644 --- a/src/lua/lua_tcp.c +++ b/src/lua/lua_tcp.c @@ -1487,7 +1487,7 @@ lua_tcp_request (lua_State *L) struct rspamd_task *task = NULL; struct rspamd_config *cfg = NULL; struct iovec *iov = NULL; - struct upstream *up; + struct upstream *up = NULL; guint niov = 0, total_out; guint64 h; gdouble timeout = default_tcp_timeout;