You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As stated in the title, pdf.strict in readFromStream (at line 582 in generic.py) raises an AttributeError because the parameter pdf as received is None.
Going back, this comes from ContentStream.__parseContentStream at file pdf.py line 2706 though the call operands.append(readObject(stream, None)). readObject in turn calls DictionaryObject.readFromStream at line 66 of generic.py
Thus, it is an explicit call with None as an argument that causes the exception. The starting call with None is done at an else clause after some checks on the stream, so maybe there is a missing check.
Anyhow if None is to be passed as argument pdf, I believe a check should be in order down the line to avoid exceptions.
I changed the call to
operands.append(readObject(stream, self.pdf))
and apparently no harm is done (aside from avoiding the exception).
The text was updated successfully, but these errors were encountered:
As stated in the title, pdf.strict in readFromStream (at line 582 in generic.py) raises an AttributeError because the parameter pdf as received is None.
Going back, this comes from ContentStream.__parseContentStream at file pdf.py line 2706 though the call operands.append(readObject(stream, None)). readObject in turn calls DictionaryObject.readFromStream at line 66 of generic.py
Thus, it is an explicit call with None as an argument that causes the exception. The starting call with None is done at an else clause after some checks on the stream, so maybe there is a missing check.
Anyhow if None is to be passed as argument pdf, I believe a check should be in order down the line to avoid exceptions.
I changed the call to
operands.append(readObject(stream, self.pdf))
and apparently no harm is done (aside from avoiding the exception).
The text was updated successfully, but these errors were encountered: