expose our hello to plugins
[oweals/gnunet.git] / src / fs / test_fs_unindex_persistence.c
index 43d03fcb6e7ba80340dda331bf118b5d0c723afa..3483b7e0992337b6309595ab44be20477d66d1b7 100644 (file)
@@ -84,11 +84,17 @@ static void
 abort_unindex_task (void *cls,
                    const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  GNUNET_FS_unindex_stop (unindex);
-  unindex = NULL;
-  GNUNET_DISK_directory_remove (fn);
-  GNUNET_free (fn);
-  fn = NULL;
+  if (unindex != NULL)
+    {
+      GNUNET_FS_unindex_stop (unindex);
+      unindex = NULL;
+    }
+  if (fn != NULL)
+    {
+      GNUNET_DISK_directory_remove (fn);
+      GNUNET_free (fn);
+      fn = NULL;
+    }
 }