From: Jan Smutny Date: Fri, 17 Apr 2020 15:31:50 +0000 (+0200) Subject: src/lua/lua_util.c: remove unused function X-Git-Tag: 2.6~515^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=acefdbe25a8d11ec81030724cb07474dc332ea68;p=rspamd.git src/lua/lua_util.c: remove unused function --- diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c index e7f18db2b..7f9918c61 100644 --- a/src/lua/lua_util.c +++ b/src/lua/lua_util.c @@ -1464,51 +1464,6 @@ lua_util_levenshtein_distance (lua_State *L) return 1; } -static gint -lua_util_parse_addr (lua_State *L) -{ - LUA_TRACE_POINT; - GPtrArray *addrs; - gsize len; - const gchar *str = luaL_checklstring (L, 1, &len); - rspamd_mempool_t *pool; - gboolean own_pool = FALSE; - - if (str) { - - if (lua_type (L, 2) == LUA_TUSERDATA) { - pool = rspamd_lua_check_mempool (L, 2); - - if (pool == NULL) { - return luaL_error (L, "invalid arguments"); - } - } - else { - pool = rspamd_mempool_new (rspamd_mempool_suggest_size (), - "lua util", 0); - own_pool = TRUE; - } - - addrs = rspamd_email_address_from_mime (pool, str, len, NULL); - - if (addrs == NULL) { - lua_pushnil (L); - } - else { - lua_push_emails_address_list (L, addrs, 0); - } - - if (own_pool) { - rspamd_mempool_delete (pool); - } - } - else { - lua_pushnil (L); - } - - return 1; -} - static gint lua_util_fold_header (lua_State *L) {