Our sys. admin. just upgraded image magick on one of our servers, I ran the program again and it segment faulted.
We are using Image-Magick 6.3.5-6
perl 5.8.8
FreeBSD 6.1 stable.
Here is a sample run,
Is there any information or anything else I can do to help you solve this problem?
Regards,
-daniel
[4:34pm]/home/daniel>cat go.pl
#!/usr/bin/perl
use Image::Magick;
my $image=Image::Magick->new();
open my $fh, '>', 'bad.jpg';
print $fh "WEEEEE";
close $fh;
# pings of very non-valid jpgs causes seg faults.
my @stuff = $image->ping('bad.jpg');
die "this causes a seg fault\n";
[4:34pm]/home/daniel>perl go.pl
this causes a seg fault
Segmentation fault
[4:34pm]/home/daniel>identify -version
Version: ImageMagick 6.3.5 08/27/07 Q16
http://www.imagemagick.org
Copyright: Copyright (C) 1999-2007 ImageMagick Studio LLC
[4:34pm]/home/daniel>uname -a
FreeBSD dv3.picturetrail.com 6.1-STABLE FreeBSD 6.1-STABLE #1: Thu Jun 15 14:41:29 PDT 2006
nicole@www12.picturetrail.com
:/usr/obj/usr/src/sys/WWWv2 amd64
[4:34pm]/home/daniel>perl -v
This is perl, v5.8.8 built for amd64-freebsd
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2006, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at
http://www.perl.org/, the Perl Home Page.
[4:34pm]/home/daniel>