Fixed a possible problem with xact_t::date()

This commit is contained in:
John Wiegley 2009-02-16 18:06:30 -04:00
parent 2a79d2d3bd
commit 053ecc9366

View file

@ -85,7 +85,7 @@ date_t xact_t::date() const
if (! _date) { if (! _date) {
assert(entry); assert(entry);
return *entry->_date; return entry->date();
} }
return *_date; return *_date;
} }