mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.strbitop: Remove redundant init function
When you have 3 almost identical functions, you tend to edit one and then copypaste. Forgot to remove this line from the other two.
This commit is contained in:
parent
da8eca639a
commit
9b8a54345f
1 changed files with 0 additions and 4 deletions
|
@ -20,8 +20,6 @@ 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;
|
||||
|
@ -44,8 +42,6 @@ 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