Fix djvu crash on long-press on scanned text (#8626)

reviewable/pr8629/r1
hius07 2 years ago committed by GitHub
parent e2a5fd5c36
commit 6a5f330b3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -668,7 +668,9 @@ function KoptInterface:getNativeTextBoxesFromScratch(doc, pageno)
local page = doc._document:openPage(pageno)
page:getPagePix(kc)
local boxes, nr_word = kc:getNativeWordBoxes("src", 0, 0, page_size.w, page_size.h)
DocCache:insert(hash, CacheItem:new{ scratchnativepgboxes = boxes, size = 192 * nr_word }) -- estimation
if boxes then
DocCache:insert(hash, CacheItem:new{ scratchnativepgboxes = boxes, size = 192 * nr_word }) -- estimation
end
page:close()
kc:free()
return boxes

Loading…
Cancel
Save