diff options
author | Martin Wehner <martin.wehner@epost.de> | 2003-10-29 05:10:05 +0000 |
---|---|---|
committer | Martin Wehner <mwehner@src.gnome.org> | 2003-10-29 05:10:05 +0000 |
commit | b11514b765f381e5d4b508384e6aed88fed967f6 (patch) | |
tree | 4ace707cc4e55e6e3c5dfaee4481c7daaac5e458 /components | |
parent | 28f5bfcfde7851fbceabb0c85d319b8d2e9f5dcf (diff) | |
download | nautilus-b11514b765f381e5d4b508384e6aed88fed967f6.tar.gz |
Fix leaks.
2003-10-29 Martin Wehner <martin.wehner@epost.de>
* components/tree/nautilus-tree-model.c:
* libnautilus-private/nautilus-icon-dnd.c:
* src/file-manager/fm-properties-window.c:
Fix leaks.
Diffstat (limited to 'components')
-rw-r--r-- | components/tree/nautilus-tree-model.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/tree/nautilus-tree-model.c b/components/tree/nautilus-tree-model.c index 64409b3ff..fe539fde5 100644 --- a/components/tree/nautilus-tree-model.c +++ b/components/tree/nautilus-tree-model.c @@ -202,6 +202,7 @@ tree_node_destroy (NautilusTreeModel *model, TreeNode *node) g_object_unref (node->file); g_free (node->display_name); + g_free (node->icon_name); object_unref_if_not_NULL (node->closed_pixbuf); object_unref_if_not_NULL (node->open_pixbuf); |