mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 02:49:00 +00:00
Fix QPDF::copyForeignObject warning
Provide correct obj_gen and offset.
This commit is contained in:
parent
54cf0e519c
commit
264d4082e4
@ -677,8 +677,11 @@ QPDF::copyForeignObject(QPDFObjectHandle foreign)
|
||||
|
||||
auto og = foreign.getObjGen();
|
||||
if (!obj_copier.object_map.count(og)) {
|
||||
warn(damagedPDF("unexpected reference to /Pages object while copying foreign object; "
|
||||
"replacing with null"));
|
||||
warn(damagedPDF(
|
||||
"foreign object " + og.unparse(' '),
|
||||
foreign.getParsedOffset(),
|
||||
"unexpected reference to /Pages object while copying foreign object; replacing with "
|
||||
"null"));
|
||||
return QPDFObjectHandle::newNull();
|
||||
}
|
||||
return obj_copier.object_map[foreign.getObjGen()];
|
||||
|
@ -1,2 +1,2 @@
|
||||
WARNING: minimal.pdf (object 6 0, offset 556): unexpected reference to /Pages object while copying foreign object; replacing with null
|
||||
WARNING: minimal.pdf (foreign object 2 0, offset 768): unexpected reference to /Pages object while copying foreign object; replacing with null
|
||||
test 25 done
|
||||
|
Loading…
Reference in New Issue
Block a user