Skip to content

Commit

Permalink
Fixed remove key, updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekensteyn committed Nov 21, 2014
1 parent b4ad639 commit 1cdf02e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ GOBJECT_LIST_DISPLAY:
• ‘refs’: Print information about every reference increment and
decrement on objects.
• ‘backtrace’: Include backtraces with every printed message.
• ‘tracerefs’: At exit, for each object still alive, print a call tree.
• ‘all’: All of the above.

GOBJECT_LIST_FILTER:
Expand Down
2 changes: 1 addition & 1 deletion gobject-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ _object_finalized (G_GNUC_UNUSED gpointer data,
g_hash_table_remove (gobject_list_state.objects, obj);
g_hash_table_remove (gobject_list_state.added, obj);
#ifdef WITH_ORIGINS_TRACE
g_hash_table_remove (gobject_list_state.origins, obj);
g_hash_table_remove (gobject_list_state.origins, G_OBJECT_TYPE_NAME (obj));
#endif

G_UNLOCK (gobject_list);
Expand Down

0 comments on commit 1cdf02e

Please sign in to comment.