SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
18
textproc/xpdf/patches/patch-xpdf_TextOutputDev_cc
Normal file
18
textproc/xpdf/patches/patch-xpdf_TextOutputDev_cc
Normal file
|
@ -0,0 +1,18 @@
|
|||
CVE-2019-16927, CVE-2019-9877 from 4.02
|
||||
|
||||
Index: xpdf/TextOutputDev.cc
|
||||
--- xpdf/TextOutputDev.cc.orig
|
||||
+++ xpdf/TextOutputDev.cc
|
||||
@@ -2472,6 +2472,12 @@ TextBlock *TextPage::split(GList *charsA, int rot) {
|
||||
|
||||
//----- compute the horizontal and vertical profiles
|
||||
|
||||
+ if (xMin / splitPrecision < 0.5 * INT_MIN ||
|
||||
+ xMax / splitPrecision > 0.5 * INT_MAX ||
|
||||
+ yMin / splitPrecision < 0.5 * INT_MIN ||
|
||||
+ xMax / splitPrecision > 0.5 * INT_MAX) {
|
||||
+ return NULL;
|
||||
+ }
|
||||
// add some slack to the array bounds to avoid floating point
|
||||
// precision problems
|
||||
xMinI = (int)floor(xMin / splitPrecision) - 1;
|
Loading…
Add table
Add a link
Reference in a new issue