blob: 4a10a5e07fe671aa70d29fe95901c06607443b85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- lib/qof/qofid.c.orig Sun May 23 22:57:30 2004
+++ lib/qof/qofid.c Sun Jul 4 23:00:04 2004
@@ -182,8 +182,9 @@
static void
qof_collection_remove_entity (QofEntity *ent)
{
+ QofCollection *col;
if (!ent) return;
- QofCollection *col = ent->collection;
+ col = ent->collection;
if (!col) return;
g_hash_table_remove (col->hash_of_entities, &ent->guid);
ent->collection = NULL;
|