[poppler] poppler/Stream.cc
Albert Astals Cid
aacid at kemper.freedesktop.org
Tue May 24 21:35:29 UTC 2016
poppler/Stream.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5f51939eea5b98dcef115d18baec3179701d0292
Author: Albert Astals Cid <aacid at kde.org>
Date: Tue May 24 23:34:48 2016 +0200
Fix stack overflow
Bug #96027
diff --git a/poppler/Stream.cc b/poppler/Stream.cc
index f1c68e9..4a9babe 100644
--- a/poppler/Stream.cc
+++ b/poppler/Stream.cc
@@ -183,7 +183,7 @@ Stream *Stream::addFilters(Object *dict, int recursion) {
dict->dictLookup("DecodeParms", ¶ms, recursion);
if (params.isNull()) {
params.free();
- dict->dictLookup("DP", ¶ms);
+ dict->dictLookup("DP", ¶ms, recursion);
}
if (obj.isName()) {
str = makeFilter(obj.getName(), str, ¶ms, recursion, dict);
More information about the poppler
mailing list