diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-16 21:30:19 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:24 -0400 |
commit | 10fc16e114e263e659360bd52821a380b3a96fc4 (patch) | |
tree | 60dbe38bc084a248988189375a776deda229580b /journal.cc | |
parent | e22fa78e84a0811a7f9640cfba475f1917ec4b7d (diff) | |
download | fork-ledger-10fc16e114e263e659360bd52821a380b3a96fc4.tar.gz fork-ledger-10fc16e114e263e659360bd52821a380b3a96fc4.tar.bz2 fork-ledger-10fc16e114e263e659360bd52821a380b3a96fc4.zip |
(actual_date, effective_date): Changed an assert for non-NULL to a
mere check (it happens with the 'output' command).
Diffstat (limited to 'journal.cc')
-rw-r--r-- | journal.cc | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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; } |