mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.encodings: Don't ignore non-strings passed to stringprep functions
If you manage to pass a table or something weird to these, you deserve to know.
This commit is contained in:
parent
2b03568086
commit
b679ffe808
1 changed files with 1 additions and 11 deletions
|
@ -283,12 +283,7 @@ static int icu_stringprep_prep(lua_State *L, const UStringPrepProfile *profile)
|
||||||
|
|
||||||
UErrorCode err = U_ZERO_ERROR;
|
UErrorCode err = U_ZERO_ERROR;
|
||||||
|
|
||||||
if(!lua_isstring(L, 1)) {
|
input = luaL_checklstring(L, 1, &input_len);
|
||||||
lua_pushnil(L);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
input = lua_tolstring(L, 1, &input_len);
|
|
||||||
|
|
||||||
if(input_len >= 1024) {
|
if(input_len >= 1024) {
|
||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
|
@ -408,11 +403,6 @@ static int stringprep_prep(lua_State *L, const Stringprep_profile *profile) {
|
||||||
int ret;
|
int ret;
|
||||||
Stringprep_profile_flags flags = 0;
|
Stringprep_profile_flags flags = 0;
|
||||||
|
|
||||||
if(!lua_isstring(L, 1)) {
|
|
||||||
lua_pushnil(L);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
s = check_utf8(L, 1, &len);
|
s = check_utf8(L, 1, &len);
|
||||||
|
|
||||||
/* strict */
|
/* strict */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue