]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Oops, fix math.huge invocation
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 18 Oct 2019 18:16:39 +0000 (19:16 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 18 Oct 2019 18:16:39 +0000 (19:16 +0100)
Issue: #3099

lualib/lua_meta.lua

index b7c9286d7a5df1a5b5826b18a29a012fd3a9824b..4f4a6e3acd09cb4746f9fe361bde6f9ce0f7f639 100644 (file)
@@ -455,7 +455,7 @@ local function rspamd_gen_metatokens(task, names)
         for i,tok in ipairs(ct) do
           lua_util.debugm(N, task, "metatoken: %s = %s",
               mt.names[i], tok)
-          if tok ~= tok or tok == math.huge() then
+          if tok ~= tok or tok == math.huge then
             logger.errx(task, 'metatoken %s returned %s; replace it with 0 for sanity',
                 mt.names[i], tok)
             tok = 0.0
@@ -471,7 +471,7 @@ local function rspamd_gen_metatokens(task, names)
     for _,n in ipairs(names) do
       if metatokens_by_name[n] then
         local tok = metatokens_by_name[n](task)
-        if tok ~= tok or tok == math.huge() then
+        if tok ~= tok or tok == math.huge then
           logger.errx(task, 'metatoken %s returned %s; replace it with 0 for sanity',
               n, tok)
           tok = 0.0
@@ -495,7 +495,7 @@ local function rspamd_gen_metatokens_table(task)
   for _,mt in ipairs(metafunctions) do
     local ct = mt.cb(task)
     for i,tok in ipairs(ct) do
-      if tok ~= tok or tok == math.huge() then
+      if tok ~= tok or tok == math.huge then
         logger.errx(task, 'metatoken %s returned %s; replace it with 0 for sanity',
             mt.names[i], tok)
         tok = 0.0