aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_unindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs_unindex.c')
-rw-r--r--src/fs/fs_unindex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fs/fs_unindex.c b/src/fs/fs_unindex.c
index f2315d7d0..8c27af9de 100644
--- a/src/fs/fs_unindex.c
+++ b/src/fs/fs_unindex.c
@@ -415,7 +415,7 @@ GNUNET_FS_unindex_do_extract_keywords_ (struct GNUNET_FS_UnindexContext *uc)
415 GNUNET_NO, ex, 415 GNUNET_NO, ex,
416 &unindex_directory_scan_cb, 416 &unindex_directory_scan_cb,
417 uc); 417 uc);
418 GNUNET_free_non_null (ex); 418 GNUNET_free (ex);
419} 419}
420 420
421 421
@@ -777,8 +777,8 @@ GNUNET_FS_unindex_signal_suspend_ (void *cls)
777 UNINDEX_STATE_COMPLETE) ? uc->file_size : 0); 777 UNINDEX_STATE_COMPLETE) ? uc->file_size : 0);
778 GNUNET_break (NULL == uc->client_info); 778 GNUNET_break (NULL == uc->client_info);
779 GNUNET_free (uc->filename); 779 GNUNET_free (uc->filename);
780 GNUNET_free_non_null (uc->serialization); 780 GNUNET_free (uc->serialization);
781 GNUNET_free_non_null (uc->emsg); 781 GNUNET_free (uc->emsg);
782 GNUNET_free (uc); 782 GNUNET_free (uc);
783} 783}
784 784
@@ -892,7 +892,7 @@ GNUNET_FS_unindex_stop (struct GNUNET_FS_UnindexContext *uc)
892 (uc->state == 892 (uc->state ==
893 UNINDEX_STATE_COMPLETE) ? uc->file_size : 0); 893 UNINDEX_STATE_COMPLETE) ? uc->file_size : 0);
894 GNUNET_break (NULL == uc->client_info); 894 GNUNET_break (NULL == uc->client_info);
895 GNUNET_free_non_null (uc->emsg); 895 GNUNET_free (uc->emsg);
896 GNUNET_free (uc->filename); 896 GNUNET_free (uc->filename);
897 GNUNET_free (uc); 897 GNUNET_free (uc);
898} 898}