Browse Source

[Minor] Add some sanity checks

tags/2.5
Vsevolod Stakhov 4 years ago
parent
commit
d9190d8423
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lualib/lua_content/pdf.lua

+ 2
- 2
lualib/lua_content/pdf.lua View File



for _,c in ipairs(contents) do for _,c in ipairs(contents) do
local cobj = maybe_dereference_object(c, pdf, task) local cobj = maybe_dereference_object(c, pdf, task)
if cobj then
if cobj and type(cobj) == 'table' then
obj.contents[#obj.contents + 1] = cobj obj.contents[#obj.contents + 1] = cobj
cobj.parent = obj cobj.parent = obj
cobj.type = 'content' cobj.type = 'content'
span_len = (elts[i + 1][2] + first) - offset span_len = (elts[i + 1][2] + first) - offset
end end


if span_len > 0 then
if span_len > 0 and offset + span_len < #uncompressed then
local obj = { local obj = {
major = obj_number, major = obj_number,
minor = 0, -- Implicit minor = 0, -- Implicit

Loading…
Cancel
Save