Skip to content

Commit

Permalink
Fix an uninitialized variable error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtalexander committed Feb 19, 2014
1 parent 80cd6d7 commit 6390beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/gncOwner.c
Expand Up @@ -1030,7 +1030,7 @@ gncOwnerApplyPayment (const GncOwner *owner, Transaction *txn, GList *lots,
gnc_numeric amount, gnc_numeric exch, Timespec date,
const char *memo, const char *num, gboolean auto_pay)
{
GNCLot *payment_lot;
GNCLot *payment_lot = NULL;
GList *selected_lots = NULL;

/* Verify our arguments */
Expand Down

0 comments on commit 6390beb

Please sign in to comment.