diff options
Diffstat (limited to 'debian/patches/06_fix_pdf_xref.dpatch')
-rw-r--r-- | debian/patches/06_fix_pdf_xref.dpatch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/patches/06_fix_pdf_xref.dpatch b/debian/patches/06_fix_pdf_xref.dpatch deleted file mode 100644 index 60cc285..0000000 --- a/debian/patches/06_fix_pdf_xref.dpatch +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 06_fix_pdf_xref.dpatch by <jblache@debian.org> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Mark non-existent objects as free in the xref table. - -@DPATCH@ -diff -urNad xsane-0.995~/src/xsane-multipage-project.c xsane-0.995/src/xsane-multipage-project.c ---- xsane-0.995~/src/xsane-multipage-project.c 2007-05-17 14:57:31.000000000 +0200 -+++ xsane-0.995/src/xsane-multipage-project.c 2008-09-17 21:54:28.871207862 +0200 -@@ -973,6 +973,10 @@ - else if (output_format == XSANE_PDF) - { - xsane_save_pdf_create_document_header(outfile, &xref, pages, preferences.save_pdf_flatedecoded); -+ -+ /* Objects 4 and 5 are unused and do not exist */ -+ xref.obj[4] = 0; -+ xref.obj[5] = 0; - } - } - #ifdef HAVE_LIBTIFF |