]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Lua_trie: Fix match for lua_text
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 6 Sep 2019 11:28:20 +0000 (12:28 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 6 Sep 2019 11:28:20 +0000 (12:28 +0100)
src/lua/lua_trie.c

index b030c735add3b5027b4a1c39e883f89a8e0787b6..82d11c50c65fe3919f36a52ea042e4dec7f7c210 100644 (file)
@@ -290,7 +290,7 @@ lua_trie_match (lua_State *L)
                        }
                }
                else if (lua_type (L, 2) == LUA_TUSERDATA) {
-                       t = lua_check_text (L, -1);
+                       t = lua_check_text (L, 2);
 
                        if (t && lua_trie_search_str (L, trie, t->start, t->len, cb)) {
                                found = TRUE;