[poppler] Branch 'poppler-0.12' - poppler/PDFDoc.cc
Albert Astals Cid
aacid at kemper.freedesktop.org
Sat Dec 5 14:34:33 PST 2009
poppler/PDFDoc.cc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit c9ee556ab8b9bab3107a5cb3489354b3d6187a8b
Author: Axel Struebing <axel.struebing at freenet.de>
Date: Sat Dec 5 22:31:29 2009 +0000
Add a empty space after null
Fixes bug 25465
diff --git a/poppler/PDFDoc.cc b/poppler/PDFDoc.cc
index 4af402b..b088f6c 100644
--- a/poppler/PDFDoc.cc
+++ b/poppler/PDFDoc.cc
@@ -20,6 +20,7 @@
// Copyright (C) 2008 Carlos Garcia Campos <carlosgc at gnome.org>
// Copyright (C) 2009 Eric Toombs <ewtoombs at uwaterloo.ca>
// Copyright (C) 2009 Kovid Goyal <kovid at kovidgoyal.net>
+// Copyright (C) 2009 Axel Struebing <axel.struebing at freenet.de>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
@@ -732,7 +733,7 @@ Guint PDFDoc::writeObject (Object* obj, Ref* ref, OutStream* outStr)
break;
}
case objNull:
- outStr->printf( "null");
+ outStr->printf( "null ");
break;
case objArray:
array = obj->getArray();
More information about the poppler
mailing list