diff options
author | Marius Halden <marius.h@lden.org> | 2015-02-14 07:34:32 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2015-02-14 07:34:32 +0100 |
commit | b8a59f230b915284c961d68e94b259a770c896e3 (patch) | |
tree | 247f0b99822efdece869982e1f6859be29d3bb5a | |
parent | c5171c7a40acd0b9c7539c44a2556c570c8355ce (diff) | |
download | appdrift-stats-b8a59f230b915284c961d68e94b259a770c896e3.tar.gz appdrift-stats-b8a59f230b915284c961d68e94b259a770c896e3.tar.bz2 appdrift-stats-b8a59f230b915284c961d68e94b259a770c896e3.tar.xz |
Initialize some vars to undef
-rwxr-xr-x | stats.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ my @content = split /^-+$/m, $content; shift @content; for my $section (@content) { - my ($position, $user, $balance, $endpoint, $time_up, $time_maint, $time_down); + my ($position, $user, $balance, $endpoint, $time_up, $time_maint, $time_down) = (undef); for my $line (split /\n/, $section) { next if (length $line < 1); |