diff options
author | Christian Grothoff <christian@grothoff.org> | 2008-06-02 04:13:54 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2008-06-02 04:13:54 +0000 |
commit | 23475649f261a2fff3426e7e59a5d32a65383db5 (patch) | |
tree | 4f06351ad274f16358686e211694359777796877 | |
parent | cba360435e6e9017b2c717833a39dbf7a4d4dd8c (diff) | |
download | gnunet-gtk-23475649f261a2fff3426e7e59a5d32a65383db5.tar.gz gnunet-gtk-23475649f261a2fff3426e7e59a5d32a65383db5.zip |
leak
-rw-r--r-- | src/plugins/fs/namespace.c | 1 | ||||
-rw-r--r-- | src/plugins/fs/namespace_search.c | 1 | ||||
-rw-r--r-- | src/plugins/fs/upload.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/fs/namespace.c b/src/plugins/fs/namespace.c index f7a12816..c0200c58 100644 --- a/src/plugins/fs/namespace.c +++ b/src/plugins/fs/namespace.c | |||
@@ -394,6 +394,7 @@ addNamespaceContentToModel (void *cls, | |||
394 | GNUNET_free (freq); | 394 | GNUNET_free (freq); |
395 | GNUNET_free (date); | 395 | GNUNET_free (date); |
396 | GNUNET_free (mime); | 396 | GNUNET_free (mime); |
397 | GNUNET_free (desc); | ||
397 | GNUNET_GTK_DEBUG_END (); | 398 | GNUNET_GTK_DEBUG_END (); |
398 | return GNUNET_OK; | 399 | return GNUNET_OK; |
399 | } | 400 | } |
diff --git a/src/plugins/fs/namespace_search.c b/src/plugins/fs/namespace_search.c index d8900c93..964e6ede 100644 --- a/src/plugins/fs/namespace_search.c +++ b/src/plugins/fs/namespace_search.c | |||
@@ -275,6 +275,7 @@ saveDiscovery (void *cls) | |||
275 | NS_SEARCH_METADATA, dmd, | 275 | NS_SEARCH_METADATA, dmd, |
276 | NS_SEARCH_RATING, nni->rating, -1); | 276 | NS_SEARCH_RATING, nni->rating, -1); |
277 | } | 277 | } |
278 | GNUNET_free (desc); | ||
278 | GNUNET_free (name); | 279 | GNUNET_free (name); |
279 | GNUNET_GTK_DEBUG_END (); | 280 | GNUNET_GTK_DEBUG_END (); |
280 | 281 | ||
diff --git a/src/plugins/fs/upload.c b/src/plugins/fs/upload.c index ef2644be..486633f4 100644 --- a/src/plugins/fs/upload.c +++ b/src/plugins/fs/upload.c | |||
@@ -175,6 +175,7 @@ fs_upload_started (struct GNUNET_FSUI_UploadList *fsui, | |||
175 | path = gtk_tree_model_get_path (GTK_TREE_MODEL (upload_summary), &iter); | 175 | path = gtk_tree_model_get_path (GTK_TREE_MODEL (upload_summary), &iter); |
176 | ret->summaryViewRowReference | 176 | ret->summaryViewRowReference |
177 | = gtk_tree_row_reference_new (GTK_TREE_MODEL (upload_summary), path); | 177 | = gtk_tree_row_reference_new (GTK_TREE_MODEL (upload_summary), path); |
178 | gtk_tree_path_free (path); | ||
178 | ret->has_terminated = ((state != GNUNET_FSUI_ACTIVE) | 179 | ret->has_terminated = ((state != GNUNET_FSUI_ACTIVE) |
179 | && (state != GNUNET_FSUI_PENDING)); | 180 | && (state != GNUNET_FSUI_PENDING)); |
180 | 181 | ||