Submitted By: Fernando de Oliveira Date: 2014-06-11 Initial Package Version: 1.0.54 Upstream Status: Fixed Origin: Upstream URL: http://bzr.linuxfoundation.org/loggerhead/openprinting/cups-filters/diff/7219 Description: pdftoraster: Fixed segfault caused by introduction of "no-color-management" option (Bug #1214). === modified file 'filter/pdftoraster.cxx' --- a/filter/pdftoraster.cxx 2014-06-06 10:44:22 +0000 +++ b/filter/pdftoraster.cxx 2014-06-11 08:55:52 +0000 @@ -444,7 +444,7 @@ } } /* support the "no-color-management" option */ - if (cupsGetOption("no-color-management", num_options, options) == NULL) + if (cupsGetOption("no-color-management", num_options, options) != NULL) cm_off = true; if (!cm_off) { if (getColorProfilePath(ppd,&profilePath)) { @@ -1998,9 +1998,7 @@ pdfError(-1,const_cast("Can't open raster stream")); exit(1); } - if (!cm_off) { - selectConvertFunc(raster); - } + selectConvertFunc(raster); for (i = 1;i <= npages;i++) { outPage(doc,catalog,i,out,raster); }