commit 4ae4107: [Minor] Add workaround for old libicu (bug in libicu)

Vsevolod Stakhov vsevolod at highsecure.ru
Wed Jan 8 13:35:07 UTC 2020


Author: Vsevolod Stakhov
Date: 2020-01-08 13:28:00 +0000
URL: https://github.com/rspamd/rspamd/commit/4ae4107e61fa6eef71b4c84625d1df68849233d4 (HEAD -> master)

[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");


More information about the Commits mailing list