aboutsummaryrefslogtreecommitdiffstats
path: root/util-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-10-15 17:05:53 +0200
committerKim Alvefur <zash@zash.se>2020-10-15 17:05:53 +0200
commitff4668cb1fd6410255080dd8c4b21ac4d5efe50f (patch)
tree4c1179c048f140439a94858defd7e7281a4bd29f /util-src
parent339ababe645bf4c226d0dd8e17249e1d896d7f01 (diff)
downloadprosody-ff4668cb1fd6410255080dd8c4b21ac4d5efe50f.tar.gz
prosody-ff4668cb1fd6410255080dd8c4b21ac4d5efe50f.zip
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.
Diffstat (limited to 'util-src')
-rw-r--r--util-src/strbitop.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/util-src/strbitop.c b/util-src/strbitop.c
index 922048fd..8c6367c8 100644
--- a/util-src/strbitop.c
+++ b/util-src/strbitop.c
@@ -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;