openbsd-ports/print/cups/patches/patch-pdftops_Stream_h
mbalmer 79221cf34b Security: Fix vulnerabilities in the PDF to PS rendering code
(iDefense advisories from 2005-12-05)
- DCTStream Baseline Heap Overflow Vulnerability
- DCTStream Progressive Heap Overflow
- StreamPredictor Heap Overflow Vulnerability
Patch provided by the Xpdf folks.
2005-12-06 23:23:44 +00:00

21 lines
542 B
Plaintext

$OpenBSD: patch-pdftops_Stream_h,v 1.1 2005/12/06 23:23:44 mbalmer Exp $
--- pdftops/Stream.h.orig Mon Feb 2 23:41:09 2004
+++ pdftops/Stream.h Wed Dec 7 00:08:08 2005
@@ -231,6 +231,8 @@ public:
~StreamPredictor();
+ GBool isOk() { return ok; }
+
int lookChar();
int getChar();
@@ -248,6 +250,7 @@ private:
int rowBytes; // bytes per line
Guchar *predLine; // line buffer
int predIdx; // current index in predLine
+ GBool ok;
};
//------------------------------------------------------------------------