SIGSEGV in QueueAuthenticNexus of montage
-
- Posts: 66
- Joined: 2010-05-04T10:50:21-07:00
- Authentication code: 8675308
- Location: Russia, Saint-Petersburg
SIGSEGV in QueueAuthenticNexus of montage
Please look in our bugzilla https://bugzilla.redhat.com/show_bug.cgi?id=735599 for more details and backtraces.
Re: SIGSEGV in QueueAuthenticNexus of montage
This problem requires two small patches. In magick/cache.c/QueueAuthenticNexus(), change
to
and in magick/montage.c/MontageImageList(), change
to
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);
-
- Posts: 66
- Joined: 2010-05-04T10:50:21-07:00
- Authentication code: 8675308
- Location: Russia, Saint-Petersburg
Re: SIGSEGV in QueueAuthenticNexus of montage
Will be these patches merged into main code of ImageMagick?
Thanks.
Thanks.
Re: SIGSEGV in QueueAuthenticNexus of montage
The patches are already in Subversion for ImageMagick 6.7.2 and will be part of the ImageMagick 6.7.2-2 release within a week.
-
- Posts: 66
- Joined: 2010-05-04T10:50:21-07:00
- Authentication code: 8675308
- Location: Russia, Saint-Petersburg
Re: SIGSEGV in QueueAuthenticNexus of montage
Thats cool. Thank you very much.