commit acefdbe: src/lua/lua_util.c: remove unused function
Jan Smutny
js at excello.cz
Fri Apr 17 15:35:12 UTC 2020
Author: Jan Smutny
Date: 2020-04-17 17:31:50 +0200
URL: https://github.com/rspamd/rspamd/commit/acefdbe25a8d11ec81030724cb07474dc332ea68 (refs/pull/3341/head)
src/lua/lua_util.c: remove unused function
---
src/lua/lua_util.c | 45 ---------------------------------------------
1 file changed, 45 deletions(-)
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)
{
More information about the Commits
mailing list