mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Bug 797046 - Tools / Price Database / Currencies UI not working...
since 3.4.
This commit is contained in:
parent
e31f4c3f95
commit
020bc5371f
@ -2210,7 +2210,7 @@ gnc_pricedb_nth_price (GNCPriceDB *db,
|
||||
|
||||
/* Iterate up to n times (there are i prices, so going past i will run off the end of the array) to get the nth price, each time finding the currency
|
||||
with the latest price */
|
||||
for (k = 0; k < n && k < i; ++k)
|
||||
for (k = 0; k <= n && k < i; ++k)
|
||||
{
|
||||
next_list = NULL;
|
||||
for (j = 0; j < i; ++j)
|
||||
|
Loading…
Reference in New Issue
Block a user