From aa226e6e7a97db993979aab0427c33d4cacce9dd Mon Sep 17 00:00:00 2001 From: bol-van Date: Sat, 25 Apr 2026 18:31:46 +0300 Subject: [PATCH] nfqws2: fix null ptr deref --- nfq2/lua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq2/lua.c b/nfq2/lua.c index dac72e1..a801cae 100644 --- a/nfq2/lua.c +++ b/nfq2/lua.c @@ -3843,7 +3843,7 @@ static int luacall_timer_del(lua_State *L) TimerPoolDel(¶ms.timers, timer); } else - DLOG("timer: '%s' not found\n", timer->str); + DLOG("timer: '%s' not found\n", name); lua_pushboolean(L, !!timer); LUA_STACK_GUARD_RETURN(L,1) }