diff options
author | Kurt Zenker <kz@openoffice.org> | 2011-01-06 14:58:44 +0100 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2011-01-06 14:58:44 +0100 |
commit | 715e22beeac1d0a02b99f50d38081ae56b8b22c0 (patch) | |
tree | f712a9841b55923c49bb82204a632dc3330180ba /xpdf | |
parent | 2708eda59ad5f985f04c43fc1ab90e3af8b1d626 (diff) | |
parent | b52eeebd9d8686690a70919d01ce3e693f1fb6fe (diff) |
CWS-TOOLING: integrate CWS impress208
Notes
Notes:
split repo tag: extensions_ooo/OOO330_m19
split repo tag: extensions_ooo/OOO330_m20
Diffstat (limited to 'xpdf')
-rw-r--r-- | xpdf/xpdf-3.02.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/xpdf/xpdf-3.02.patch b/xpdf/xpdf-3.02.patch index 341ad73132a2..9477f7a31d4a 100644 --- a/xpdf/xpdf-3.02.patch +++ b/xpdf/xpdf-3.02.patch @@ -1870,3 +1870,32 @@ } objStr->getObject(e->gen, num, obj); break; +--- misc/xpdf-3.02/fofi/FoFiType1.cc 2007-02-27 23:05:51.000000000 +0100 ++++ misc/build/xpdf-3.02/fofi/FoFiType1.cc 2011-01-04 13:41:06.871136746 +0100 +@@ -224,7 +224,7 @@ + code = code * 8 + (*p2 - '0'); + } + } +- if (code < 256) { ++ if (code < 256 && code >= 0) { + for (p = p2; *p == ' ' || *p == '\t'; ++p) ; + if (*p == '/') { + ++p; +--- misc/xpdf-3.02/xpdf/Gfx.cc 2007-02-27 23:05:52.000000000 +0100 ++++ misc/build/xpdf-3.02/xpdf/Gfx.cc 2011-01-04 13:41:19.847501431 +0100 +@@ -441,6 +441,7 @@ + void *abortCheckCbkDataA) { + int i; + ++ parser = NULL; + xref = xrefA; + subPage = gFalse; + printCommands = globalParams->getPrintCommands(); +@@ -483,6 +484,7 @@ + void *abortCheckCbkDataA) { + int i; + ++ parser = NULL; + xref = xrefA; + subPage = gTrue; + printCommands = globalParams->getPrintCommands(); |