]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Pet luacheck
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 30 Apr 2021 16:58:00 +0000 (17:58 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 30 Apr 2021 16:58:00 +0000 (17:58 +0100)
.luacheckrc
lualib/rspamadm/statistics_dump.lua

index 7ade0174a8009c426909a02d4242f9fe8151b590..bd68283768f6e6335c2b6d8ee4a068a5f5f8afa9 100644 (file)
@@ -36,6 +36,7 @@ globals = {
   'rspamadm_dns_resolver',
   'jit',
   'table.unpack',
+  'table.clear',
   'unpack',
 }
 
index ab4e026c5219cefc9f71c96105e51d0d03a61ac9..7b1dc581e4e3105bf7945691da1c15727cf4dee6 100644 (file)
@@ -167,7 +167,7 @@ local function redis_map_zip(ar)
 end
 
 -- Used to clear plain numeric tables
-table.clear = table.clear or function(tbl)
+local clear_fcn = table.clear or function(tbl)
   local l = #tbl
   for i=1,l do tbl[i] = nil end
 end
@@ -248,7 +248,7 @@ local function dump_pattern(conn, pattern, opts, out)
     -- Do not write the last chunk of out as it will be processed afterwards
     if not cursor == 0 then
       dump_out(out, opts, false)
-      table.clear(out)
+      clear_fcn(out)
     end
 
   until cursor == 0