]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Use unhex utility
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 21 Dec 2021 21:18:17 +0000 (21:18 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 21 Dec 2021 21:18:17 +0000 (21:18 +0000)
lualib/lua_content/pdf.lua

index b3c1f60026d274f9431f6d91ba048062ea186c80..45c11d3b41820cb3f4f80b8cc8f8d60d488eb4a6 100644 (file)
@@ -181,17 +181,14 @@ local function generic_grammar_elts()
 
   -- Helper functions
   local function pdf_hexstring_unescape(s)
-    local function ue(cc)
-      return string.char(tonumber(cc, 16))
-    end
     if #s % 2 == 0 then
       -- Sane hex string
-      return s:gsub('..', ue)
+      return lua_util.unhex(s)
     end
 
     -- WTF hex string
     -- Append '0' to it and unescape...
-    return s:sub(1, #s - 1):gsub('..' , ue) .. (s:sub(#s) .. '0'):gsub('..' , ue)
+    return lua_util.unhex(s:sub(1, #s - 1)) .. lua_util.unhex((s:sub(#s) .. '0'))
   end
 
   local function pdf_string_unescape(s)