*** empty log message ***
This commit is contained in:
parent
695c2d6e28
commit
b4cdc528b4
4 changed files with 14 additions and 14 deletions
|
|
@ -1141,9 +1141,7 @@ amount_t commodity_t::value(const std::time_t moment)
|
|||
std::time_t age = 0;
|
||||
amount_t price;
|
||||
|
||||
if (! history)
|
||||
return price;
|
||||
|
||||
if (history)
|
||||
for (history_map::reverse_iterator i = history->prices.rbegin();
|
||||
i != history->prices.rend();
|
||||
i++)
|
||||
|
|
@ -1155,7 +1153,7 @@ amount_t commodity_t::value(const std::time_t moment)
|
|||
|
||||
if (updater)
|
||||
(*updater)(*this, moment, age,
|
||||
(history->prices.size() > 0 ?
|
||||
(history && history->prices.size() > 0 ?
|
||||
(*history->prices.rbegin()).first : 0), price);
|
||||
|
||||
return price;
|
||||
|
|
|
|||
|
|
@ -46,6 +46,8 @@ void quotes_by_script::operator()(commodity_t& commodity,
|
|||
success = false;
|
||||
if (pclose(fp) != 0)
|
||||
success = false;
|
||||
} else {
|
||||
success = false;
|
||||
}
|
||||
|
||||
if (success && buf[0]) {
|
||||
|
|
|
|||
|
|
@ -18,4 +18,4 @@ else
|
|||
limit=""
|
||||
fi
|
||||
|
||||
ledger -VQ $switch $limit -s -S "-AT" balance $accts
|
||||
ledger -VQ $switch $limit -s -S "-UT" balance $accts
|
||||
|
|
|
|||
|
|
@ -18,4 +18,4 @@ else
|
|||
limit=""
|
||||
fi
|
||||
|
||||
ledger -VQ $switch $limit -s -S "-AT" balance $accts
|
||||
ledger -VQ $switch $limit -s -S "-UT" balance $accts
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue