From: Vsevolod Stakhov Date: Sat, 17 Jun 2023 11:22:00 +0000 (+0100) Subject: [Minor] Oops, fix build X-Git-Tag: 3.6~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ebb6c909fd0ceda2b9377aed04faf3b4014dd84;p=thirdparty%2Frspamd.git [Minor] Oops, fix build --- diff --git a/src/lua/lua_task.c b/src/lua/lua_task.c index 8e25c34900..1e0e0a147a 100644 --- a/src/lua/lua_task.c +++ b/src/lua/lua_task.c @@ -2745,7 +2745,7 @@ lua_task_get_rawbody (lua_State * L) else { /* Push body it it is there */ if (task->msg.len > 0 && task->msg.begin != NULL) { - lua_new_text_task (L, task->msg.begin, task->msg.len, FALSE); + lua_new_text_task (L, task, task->msg.begin, task->msg.len, FALSE); } else { lua_pushnil (L);