(actual_date, effective_date): Changed an assert for non-NULL to a

mere check (it happens with the 'output' command).
This commit is contained in:
John Wiegley 2006-02-16 21:30:19 +00:00
parent 6e5bdb9b48
commit 2a9c9dd09b

View file

@ -15,19 +15,15 @@ bool transaction_t::use_effective_date = false;
std::time_t transaction_t::actual_date() const
{
if (_date == 0) {
assert(entry);
if (_date == 0 && entry)
return entry->actual_date();
}
return _date;
}
std::time_t transaction_t::effective_date() const
{
if (_date_eff == 0) {
assert(entry);
if (_date_eff == 0 && entry)
return entry->effective_date();
}
return _date_eff;
}