Skip to content

Commit 6f722be

Browse files
committed
Bug 799562 - Import Map Editor Non-Bayesian crashes gnucash
Missing G_VALUE_INIT after recent change to function.
1 parent 9950677 commit 6f722be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libgnucash/engine/qofinstance.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,7 @@ struct wrap_param
13431343
static void
13441344
wrap_gvalue_function (const char* key, KvpValue *val, wrap_param & param)
13451345
{
1346-
GValue gv;
1346+
GValue gv = G_VALUE_INIT;
13471347
if (val->get_type() != KvpValue::Type::FRAME)
13481348
gvalue_from_kvp_value(val, &gv);
13491349
else

0 commit comments

Comments
 (0)