diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-24 22:12:05 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-02-24 22:45:28 +0100 |
commit | 67d238bf0d42fda80ae9e4c1ce301ecec8468569 (patch) | |
tree | e2ffc475bb74918b3aba1fbf7fbeb60c0560ff18 /package/xpdf/xpdf-3.02pl1.patch | |
parent | 3bd68817173de6b5f14b6f2f123d56e7acee32b0 (diff) | |
download | buildroot-novena-67d238bf0d42fda80ae9e4c1ce301ecec8468569.tar.gz buildroot-novena-67d238bf0d42fda80ae9e4c1ce301ecec8468569.zip |
xpdf: remove package
This package depends on openmotif, which has been removed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/xpdf/xpdf-3.02pl1.patch')
-rw-r--r-- | package/xpdf/xpdf-3.02pl1.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/xpdf/xpdf-3.02pl1.patch b/package/xpdf/xpdf-3.02pl1.patch deleted file mode 100644 index cd42fb962..000000000 --- a/package/xpdf/xpdf-3.02pl1.patch +++ /dev/null @@ -1,33 +0,0 @@ -*** xpdf-3.02.orig/xpdf/Stream.cc Tue Feb 27 14:05:52 2007 ---- xpdf-3.02/xpdf/Stream.cc Thu Jul 26 14:44:43 2007 -*************** -*** 410,424 **** - ok = gFalse; - - nVals = width * nComps; -- if (width <= 0 || nComps <= 0 || nBits <= 0 || -- nComps >= INT_MAX / nBits || -- width >= INT_MAX / nComps / nBits || -- nVals * nBits + 7 < 0) { -- return; -- } - pixBytes = (nComps * nBits + 7) >> 3; - rowBytes = ((nVals * nBits + 7) >> 3) + pixBytes; -! if (rowBytes <= 0) { - return; - } - predLine = (Guchar *)gmalloc(rowBytes); ---- 410,422 ---- - ok = gFalse; - - nVals = width * nComps; - pixBytes = (nComps * nBits + 7) >> 3; - rowBytes = ((nVals * nBits + 7) >> 3) + pixBytes; -! if (width <= 0 || nComps <= 0 || nBits <= 0 || -! nComps > gfxColorMaxComps || -! nBits > 16 || -! width >= INT_MAX / nComps || // check for overflow in nVals -! nVals >= (INT_MAX - 7) / nBits) { // check for overflow in rowBytes - return; - } - predLine = (Guchar *)gmalloc(rowBytes); |