mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.encodings: Fixed an issue with cross-module memory deallocation (crashes on some windows versions).
This commit is contained in:
parent
ef245f61bd
commit
930f0ab083
1 changed files with 4 additions and 4 deletions
|
@ -172,11 +172,11 @@ static int Lidna_to_ascii(lua_State *L) /** idna.to_ascii(s) */
|
||||||
int ret = idna_to_ascii_8z(s, &output, 0);
|
int ret = idna_to_ascii_8z(s, &output, 0);
|
||||||
if (ret == IDNA_SUCCESS) {
|
if (ret == IDNA_SUCCESS) {
|
||||||
lua_pushstring(L, output);
|
lua_pushstring(L, output);
|
||||||
if (output) free(output);
|
idn_free(output);
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
if (output) free(output);
|
idn_free(output);
|
||||||
return 1; // TODO return error message
|
return 1; // TODO return error message
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -189,11 +189,11 @@ static int Lidna_to_unicode(lua_State *L) /** idna.to_unicode(s) */
|
||||||
int ret = idna_to_unicode_8z8z(s, &output, 0);
|
int ret = idna_to_unicode_8z8z(s, &output, 0);
|
||||||
if (ret == IDNA_SUCCESS) {
|
if (ret == IDNA_SUCCESS) {
|
||||||
lua_pushstring(L, output);
|
lua_pushstring(L, output);
|
||||||
if (output) free(output);
|
idn_free(output);
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
if (output) free(output);
|
idn_free(output);
|
||||||
return 1; // TODO return error message
|
return 1; // TODO return error message
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue