mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix unitialized variable error in r23740.
Thanks to Herbert Thoma for the patch. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23746 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
4db833c08a
commit
9337a9be66
@ -2076,7 +2076,7 @@ record_price (SplitRegister *reg, Account *account, gnc_numeric value)
|
||||
static gboolean
|
||||
gnc_split_register_auto_calc (SplitRegister *reg, Split *split)
|
||||
{
|
||||
PriceCell *cell;
|
||||
PriceCell *cell = NULL;
|
||||
gboolean recalc_shares = FALSE;
|
||||
gboolean recalc_price = FALSE;
|
||||
gboolean recalc_value = FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user