utils/ImageOutputDev.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
New commits: commit f93fa48839be2937cd7ce38c14884428416bcc4b Author: Andreas Gruenbacher <[email protected]> Date: Sat Jan 27 20:24:09 2018 +0100 Fix build without libtiff Bug #104813 diff --git a/utils/ImageOutputDev.cc b/utils/ImageOutputDev.cc index 6ac8dc9a..63f7399e 100644 --- a/utils/ImageOutputDev.cc +++ b/utils/ImageOutputDev.cc @@ -24,6 +24,7 @@ // Copyright (C) 2013 Thomas Fischer <[email protected]> // Copyright (C) 2013 Hib Eris <[email protected]> // Copyright (C) 2017 Caolán McNamara <[email protected]> +// Copyright (C) 2018 Andreas Gruenbacher <[email protected]> // // 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 @@ -651,9 +652,9 @@ void ImageOutputDev::writeImage(GfxState *state, Object *ref, Stream *str, } writeImageFile(writer, format, "tif", str, width, height, colorMap); -#endif - delete writer; + delete writer; +#endif } else { // output in PPM/PBM format ImgWriter *writer; _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
