We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d7f71 commit 6f1c528Copy full SHA for 6f1c528
PyPDF2/pdf.py
@@ -1469,6 +1469,8 @@ def _getObjectFromStream(self, indirectReference):
1469
assert idx < objStm['/N']
1470
streamData = BytesIO(b_(objStm.getData()))
1471
for i in range(objStm['/N']):
1472
+ readNonWhitespace(streamData)
1473
+ streamData.seek(-1, 1)
1474
objnum = NumberObject.readFromStream(streamData)
1475
readNonWhitespace(streamData)
1476
streamData.seek(-1, 1)
0 commit comments