diff options
author | mkanat%kerio.com <> | 2005-02-25 12:28:01 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-02-25 12:28:01 +0100 |
commit | 1414db6ba6c7508bf6e0e4c1191218aa71d7ce43 (patch) | |
tree | 671f0025ffcadcd94848b36982f49c3256021aab | |
parent | 94c2df0e830ea7070436f8ade182645893ac3373 (diff) | |
download | bugzilla-1414db6ba6c7508bf6e0e4c1191218aa71d7ce43.tar.gz bugzilla-1414db6ba6c7508bf6e0e4c1191218aa71d7ce43.tar.xz |
Bug 282748: uninitialized value in localtime in Format.pm
Patch By Frederic Buclin <LpSolit@gmail.com> r=wurblzap, a=myk
-rw-r--r-- | Bugzilla/BugMail.pm | 8 | ||||
-rw-r--r-- | Bugzilla/Util.pm | 15 | ||||
-rw-r--r-- | CGI.pl | 5 | ||||
-rwxr-xr-x | process_bug.cgi | 12 |
4 files changed, 23 insertions, 17 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index df734ef6f..b4b0c9dfe 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -201,7 +201,9 @@ sub ProcessOneBug($) { } $values{'estimated_time'} = format_time_decimal($values{'estimated_time'}); - $values{'deadline'} = time2str("%Y-%m-%d", str2time($values{'deadline'})); + if ($values{'deadline'}) { + $values{'deadline'} = time2str("%Y-%m-%d", str2time($values{'deadline'})); + } my @dependslist; SendSQL("SELECT dependson FROM dependencies WHERE @@ -262,10 +264,6 @@ sub ProcessOneBug($) { WHERE attach_id = $attachid"); $diffpart->{'isprivate'} = FetchOneColumn(); } - if( $fieldname eq 'deadline' ) { - $old = time2str("%Y-%m-%d", str2time($old)); - $new = time2str("%Y-%m-%d", str2time($new)); - } $difftext = FormatTriple($what, $old, $new); $diffpart->{'header'} = $diffheader; $diffpart->{'fieldname'} = $fieldname; diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index 3bc39ff09..7481c18c3 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -277,14 +277,17 @@ sub file_mod_time ($) { sub ValidateDate { my ($date, $format) = @_; + my $date2; - my $ts = str2time($date); - my $date2 = time2str("%Y-%m-%d", $ts); + # $ts is undefined if the parser fails. + my $ts = str2time($date); + if ($ts) { + $date2 = time2str("%Y-%m-%d", $ts); - $date =~ s/(\d+)-0*(\d+?)-0*(\d+?)/$1-$2-$3/; - $date2 =~ s/(\d+)-0*(\d+?)-0*(\d+?)/$1-$2-$3/; - - if ($date ne $date2) { + $date =~ s/(\d+)-0*(\d+?)-0*(\d+?)/$1-$2-$3/; + $date2 =~ s/(\d+)-0*(\d+?)-0*(\d+?)/$1-$2-$3/; + } + if (!$ts || $date ne $date2) { ThrowUserError('illegal_date', {date => $date, format => $format}); } } @@ -396,11 +396,6 @@ sub GetBugActivity { $changes = []; } - if ($fieldname eq 'deadline') { - $removed = time2str("%Y-%m-%d", str2time($removed)); - $added = time2str("%Y-%m-%d", str2time($added)); - } - $operation->{'who'} = $who; $operation->{'when'} = $when; diff --git a/process_bug.cgi b/process_bug.cgi index c1f3c33bb..3eccfa370 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1767,7 +1767,17 @@ foreach my $id (@idlist) { { $check_dep_bugs = 1; } - + + # Convert deadlines to the YYYY-MM-DD format. We use an + # intermediate $xxxtime to prevent errors in the web + # server log file when str2time($xxx) is undefined. + if ($col eq 'deadline') { + my $oldtime = str2time($old); + $old = ($oldtime) ? time2str("%Y-%m-%d", $oldtime) : ''; + my $newtime = str2time($new); + $new = ($newtime) ? time2str("%Y-%m-%d", $newtime) : ''; + } + LogActivityEntry($id,$col,$old,$new,$whoid,$timestamp); $bug_changed = 1; } |