in reply to Re: Perl segfaults: Why?
in thread Perl segfaults: Why?
$ cat y.pl #!/usr/bin/perl open $fh, '<', $0;; print scalar <$fh>;; print tell( $fh );; print tell( $fh + 1 );; $ perl y.pl # system perl: 5.10.0 #!/usr/bin/perl Segmentation fault $ perl5.10.0 y.pl #!/usr/bin/perl Segmentation fault $ perl5.10.1 y.pl #!/usr/bin/perl Segmentation fault $ perl5.8.9 y.pl #!/usr/bin/perl 16-1
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl segfaults: Why?
by ikegami (Patriarch) on Sep 15, 2009 at 19:55 UTC | |
by FunkyMonk (Bishop) on Sep 15, 2009 at 21:31 UTC | |
by Burak (Chaplain) on Sep 15, 2009 at 21:27 UTC |