Skip to content

Commit

Permalink
Merge pull request #5213 from radarhere/cve_number
Browse files Browse the repository at this point in the history
Corrected CVE number
  • Loading branch information
hugovk committed Jan 21, 2021
2 parents 8dc5f69 + 6f23628 commit 97b57e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/PcxImagePlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _open(self):
self._size = bbox[2] - bbox[0], bbox[3] - bbox[1]

# don't trust the passed in stride. Calculate for ourselves.
# CVE-2020-35655
# CVE-2020-35653
stride = (self._size[0] * bits + 7) // 8
stride += stride % 2

Expand Down

0 comments on commit 97b57e1

Please sign in to comment.