Fix potential unparsed log case when log file are set in configuration file and not on command line

This commit is contained in:
Gilles Darold 2016-09-25 10:51:07 +02:00
parent bd54505c80
commit 0916f06c20
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ $SIG{'CHLD'} = 'DEFAULT';
my $t1;
# Run parsing only if we have a log file or that we are not in rebuild mode
if (!$rebuild || ($#logfile >= 0)) {
if (!$rebuild || ($#{$sa->{LogFile}} >= 0)) {
$sa->parseFile();
if ($debug) {
$t1 = Benchmark->new;