From 742b94fbd5756551ab5cd6f2ac1799dfbc7f5152 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 15 Aug 2021 17:57:18 +0200 Subject: Moved client lua thread init to where connection is initialized --- connection.c | 1 + 1 file changed, 1 insertion(+) (limited to 'connection.c') diff --git a/connection.c b/connection.c index d321ae0..b0d9fcc 100644 --- a/connection.c +++ b/connection.c @@ -24,6 +24,7 @@ struct connection * connection_new(const int client) c->fd = client; c->ref = LUA_NOREF; c->L = NULL; + c->push = 0; return c; } -- cgit v1.1