From b5cbd80f5e12522821ef81186138055bdd9e879a Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Wed, 24 Dec 2025 19:48:02 +0100 Subject: [PATCH] don't push the integer --- src/lua_rds.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lua_rds.c b/src/lua_rds.c index 09fa342..1436900 100644 --- a/src/lua_rds.c +++ b/src/lua_rds.c @@ -624,9 +624,6 @@ void lua_group_ref(RDSGroup* group, int ref) { lua_rawgeti(L, LUA_REGISTRYINDEX, ref); if (lua_isfunction(L, -1)) { - lua_pushinteger(L, group->b); - lua_pushinteger(L, group->c); - lua_pushinteger(L, group->d); if (lua_pcall(L, 3, 3, 0) == LUA_OK) { if (!lua_isinteger(L, -1)) { pthread_mutex_unlock(&lua_mutex);