You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 line
493 B

  1. --- /usr/share/perl5/Mail/SpamAssassin/Util.pm.orig 2014-08-22 00:08:39.185602751 +0200
  2. +++ /usr/share/perl5/Mail/SpamAssassin/Util.pm 2014-08-22 00:09:18.330883723 +0200
  3. @@ -285,7 +285,7 @@
  4. my $r = ref $_[0];
  5. if (!$r) {
  6. no re 'taint'; # override a "use re 'taint'" from outer scope
  7. - return if !defined $_[0];
  8. + return undef if !defined $_[0];
  9. local($1); # avoid Perl taint bug: tainted global $1 propagates taintedness
  10. $_[0] =~ /^(.*)\z/s;
  11. return $1;