r15953 - gnucash/trunk/src/engine - Relax the check on whether xaccAccountGetCommodity is called with a
David Hampton
hampton at cvs.gnucash.org
Sat Apr 21 14:30:21 EDT 2007
Author: hampton
Date: 2007-04-21 14:30:20 -0400 (Sat, 21 Apr 2007)
New Revision: 15953
Trac: http://svn.gnucash.org/trac/changeset/15953
Modified:
gnucash/trunk/src/engine/Account.c
Log:
Relax the check on whether xaccAccountGetCommodity is called with a
valid commodity. This function is called from many places without
testing to see if the account is non-NULL.
Modified: gnucash/trunk/src/engine/Account.c
===================================================================
--- gnucash/trunk/src/engine/Account.c 2007-04-21 18:14:42 UTC (rev 15952)
+++ gnucash/trunk/src/engine/Account.c 2007-04-21 18:30:20 UTC (rev 15953)
@@ -2849,7 +2849,8 @@
gnc_commodity *
xaccAccountGetCommodity (const Account *acc)
{
- g_return_val_if_fail(GNC_IS_ACCOUNT(acc), NULL);
+ if (!GNC_IS_ACCOUNT(acc))
+ return NULL;
return GET_PRIVATE(acc)->commodity;
}
More information about the gnucash-changes
mailing list