aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-01-03 14:31:13 +0000
committerChristian Grothoff <christian@grothoff.org>2012-01-03 14:31:13 +0000
commit3fe46fc4b82fdc66c74b039b11721e827ab3700d (patch)
tree8c426738291f450deceb3798a68087e0b7c1c541
parent25bb956e3af73989774c34b2e2a5bdd28845ca87 (diff)
downloadgnunet-gtk-3fe46fc4b82fdc66c74b039b11721e827ab3700d.tar.gz
gnunet-gtk-3fe46fc4b82fdc66c74b039b11721e827ab3700d.zip
-LRN: fix previous commit
-rw-r--r--src/fs/gnunet-fs-gtk-event_handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/gnunet-fs-gtk-event_handler.c b/src/fs/gnunet-fs-gtk-event_handler.c
index a77bd65d..aae48b44 100644
--- a/src/fs/gnunet-fs-gtk-event_handler.c
+++ b/src/fs/gnunet-fs-gtk-event_handler.c
@@ -1271,7 +1271,7 @@ clear_downloads (GtkButton * button, gpointer user_data)
1271 gtk_tree_model_get (tm, &iter, 9, &sr, -1); 1271 gtk_tree_model_get (tm, &iter, 9, &sr, -1);
1272 if ((sr->download != NULL) && (sr->download->is_done == GNUNET_YES)) 1272 if ((sr->download != NULL) && (sr->download->is_done == GNUNET_YES))
1273 GNUNET_FS_download_stop (sr->download->dc, GNUNET_YES); 1273 GNUNET_FS_download_stop (sr->download->dc, GNUNET_YES);
1274 else 1274 else if (sr->result == NULL)
1275 free_search_result (sr); 1275 free_search_result (sr);
1276 } 1276 }
1277 while (TRUE == gtk_tree_model_iter_next (tm, &iter)); 1277 while (TRUE == gtk_tree_model_iter_next (tm, &iter));