summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Win32/Process/Info.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Win32/Process/Info.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Win32/Process/Info.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/Win32/Process/Info.pm b/Master/tlpkg/tlperl/lib/Win32/Process/Info.pm
index 6164c18d37b..45cfc373918 100644
--- a/Master/tlpkg/tlperl/lib/Win32/Process/Info.pm
+++ b/Master/tlpkg/tlperl/lib/Win32/Process/Info.pm
@@ -70,7 +70,7 @@ use 5.006;
use strict;
use warnings;
-our $VERSION = '1.018';
+our $VERSION = '1.019';
use Carp;
use File::Spec;
@@ -514,7 +514,8 @@ passing any necessary arguments.
{
- my $is_reactos = $^O eq 'MSWin32' && lc $ENV{OS} eq 'reactos';
+ my $is_reactos = $^O eq 'MSWin32' &&
+ defined $ENV{OS} && lc $ENV{OS} eq 'reactos';
sub _isReactOS {
return $is_reactos;
}