Re: Uninitialized value in Carp.pm ?
Gurusamy Sarathy [Tue, 14 Jan 1997 18:15:25 +0000 (13:15 -0500)]
private-msgid: <199701141815.NAA07960@aatma.engin.umich.edu>

lib/Carp.pm

index 1a1b79e..de58648 100644 (file)
@@ -67,6 +67,7 @@ sub longmess {
                $a[$#a] = "...";
              }
              for (@a) {
+               $_ = "undef", next unless defined $_;
                s/'/\\'/g;
                substr($_,$MaxArgLen) = '...' if $MaxArgLen and $MaxArgLen < length;
                s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;