From: Vsevolod Stakhov Date: Wed, 8 Jan 2020 13:28:00 +0000 (+0000) Subject: [Minor] Add workaround for old libicu (bug in libicu) X-Git-Tag: 2.3~135 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ae4107e61fa6eef71b4c84625d1df68849233d4;p=thirdparty%2Frspamd.git [Minor] Add workaround for old libicu (bug in libicu) --- diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c index ae1a020a13..0b52cfbdc1 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");