mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Back out changeset 2c1583bb0e0f
Same reason as 712b2e6a09d9
This commit is contained in:
parent
bad47be8f9
commit
20fc0c9c15
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,8 @@ int strop_and(lua_State *L) {
|
|||
const char *str_a = luaL_checklstring(L, 1, &a);
|
||||
const char *str_b = luaL_checklstring(L, 2, &b);
|
||||
|
||||
luaL_buffinit(L, &buf);
|
||||
|
||||
if(a == 0 || b == 0) {
|
||||
lua_settop(L, 1);
|
||||
return 1;
|
||||
|
@ -39,6 +41,8 @@ int strop_or(lua_State *L) {
|
|||
const char *str_a = luaL_checklstring(L, 1, &a);
|
||||
const char *str_b = luaL_checklstring(L, 2, &b);
|
||||
|
||||
luaL_buffinit(L, &buf);
|
||||
|
||||
if(a == 0 || b == 0) {
|
||||
lua_settop(L, 1);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue