SIGSEGV in QueueAuthenticNexus of montage
Posted: 2011-09-04T01:58:36-07:00
Please look in our bugzilla https://bugzilla.redhat.com/show_bug.cgi?id=735599 for more details and backtraces.
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=19419
Code: Select all
assert(cache_info->signature == MagickSignature);
if (cache_info == (Cache) NULL)
return((PixelPacket *) NULL);
Code: Select all
if (cache_info == (Cache) NULL)
return((PixelPacket *) NULL);
assert(cache_info->signature == MagickSignature);
Code: Select all
montage->columns=bounds.width;
montage->rows=bounds.height;
Code: Select all
montage->columns=MagickMax(bounds.width,1);
montage->rows=MagickMax(bounds.height,1);