poppler/Stream.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 5f51939eea5b98dcef115d18baec3179701d0292 Author: Albert Astals Cid <[email protected]> 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); _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
