From 4ae4107e61fa6eef71b4c84625d1df68849233d4 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 8 Jan 2020 13:28:00 +0000 Subject: [PATCH] [Minor] Add workaround for old libicu (bug in libicu) --- src/lua/lua_util.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c index ae1a020a1..0b52cfbdc 100644 --- a/src/lua/lua_util.c +++ b/src/lua/lua_util.c @@ -2763,10 +2763,13 @@ lua_util_is_utf_outside_range(lua_State *L) return 1; } - rspamd_lru_hash_insert(validators, creation_hash_key, validator, 0, 0); + rspamd_lru_hash_insert(validators, creation_hash_key, validator, + 0, 0); } - ret = uspoof_checkUTF8 (validator, string_to_check, len_of_string, NULL, &uc_err); + gint32 pos = 0; + ret = uspoof_checkUTF8 (validator, string_to_check, len_of_string, &pos, + &uc_err); } else { return luaL_error (L, "invalid arguments"); -- 2.39.5