util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348)

This commit is contained in:
Kim Alvefur 2019-04-24 16:16:19 +02:00
parent 06cf2e641a
commit c42a786ec7

View file

@ -299,7 +299,7 @@ static int icu_stringprep_prep(lua_State *L, const UStringPrepProfile *profile)
return 1;
}
prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, 0, NULL, &err);
prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, USPREP_ALLOW_UNASSIGNED, NULL, &err);
if(U_FAILURE(err)) {
lua_pushnil(L);