]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/commitdiff
Make sure $version is not set when no suitable valgrind was found
authorVincent Pit <perl@profvince.com>
Mon, 16 Nov 2015 13:50:47 +0000 (11:50 -0200)
committerVincent Pit <perl@profvince.com>
Mon, 16 Nov 2015 13:50:47 +0000 (11:50 -0200)
This doesn't change anything but makes things clearer.

lib/Test/Valgrind/Session.pm

index d222f11ae788a4d0394607ca3728325b1325002a..7a05238dd66ec723bd8053ae281b743099814ad6 100644 (file)
@@ -132,13 +132,14 @@ sub new {
  for my $path (@paths) {
   next unless defined($path) and MM->maybe_command($path);
   my $output = qx/$path --version/;
-  $version   = do {
+  my $ver    = do {
    local $@;
    eval { Test::Valgrind::Version->new(command_output => $output) };
   };
-  if (defined $version) {
-   next if defined $min_version and $version < $min_version;
+  if (defined $ver) {
+   next if defined $min_version and $ver < $min_version;
    $valgrind = $path;
+   $version  = $ver;
    last;
   }
  }