http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4931
------- Additional Comments From [EMAIL PROTECTED] 2006-10-19 07:12 -------
this report is a bit short of info indicating a race condition; I see a use of
an uninit'd value, which can happen safely, but should be caught more cleanly.
was there actually an error condition?
(fix would be btw,
if (defined($lock_age) && ($now - $lock_age) > LOCK_MAX_AGE) {
that should be
if (defined($lock_age) && defined($now) && ($now - $lock_age) >
LOCK_MAX_AGE) {
harmless, though...
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.