aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/gnunet-service-datastore.c
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2020-07-21 12:30:37 +0200
committert3sserakt <t3ss@posteo.de>2020-07-21 12:30:37 +0200
commit5fa1c7dc809aebb55ef062cb3a2757c54eb6b7e7 (patch)
treec26167460724fea683ef51a88ffd93d1fa830412 /src/datastore/gnunet-service-datastore.c
parent17d84245fdfeeb1a6da4ffb97898903cb55f702c (diff)
parent7f4ddbcab8598e3d5e29c23ce883cdfa664408f1 (diff)
downloadgnunet-5fa1c7dc809aebb55ef062cb3a2757c54eb6b7e7.tar.gz
gnunet-5fa1c7dc809aebb55ef062cb3a2757c54eb6b7e7.zip
Merge branch 'master' of ssh://gnunet.org/gnunet
Diffstat (limited to 'src/datastore/gnunet-service-datastore.c')
-rw-r--r--src/datastore/gnunet-service-datastore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/datastore/gnunet-service-datastore.c b/src/datastore/gnunet-service-datastore.c
index 3fc46e19c..1c9e5e463 100644
--- a/src/datastore/gnunet-service-datastore.c
+++ b/src/datastore/gnunet-service-datastore.c
@@ -1355,7 +1355,7 @@ cleaning_task (void *cls)
1355 GNUNET_SCHEDULER_cancel (stat_timeout_task); 1355 GNUNET_SCHEDULER_cancel (stat_timeout_task);
1356 stat_timeout_task = NULL; 1356 stat_timeout_task = NULL;
1357 } 1357 }
1358 GNUNET_free_non_null (plugin_name); 1358 GNUNET_free (plugin_name);
1359 plugin_name = NULL; 1359 plugin_name = NULL;
1360 if (last_sync > 0) 1360 if (last_sync > 0)
1361 sync_stats (); 1361 sync_stats ();
@@ -1490,7 +1490,7 @@ run (void *cls,
1490 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 1490 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1491 _ ("Could not use specified filename `%s' for bloomfilter.\n"), 1491 _ ("Could not use specified filename `%s' for bloomfilter.\n"),
1492 NULL != fn ? fn : ""); 1492 NULL != fn ? fn : "");
1493 GNUNET_free_non_null (fn); 1493 GNUNET_free (fn);
1494 fn = NULL; 1494 fn = NULL;
1495 } 1495 }
1496 if (NULL != fn) 1496 if (NULL != fn)
@@ -1566,7 +1566,7 @@ run (void *cls,
1566 5); /* approx. 3% false positives at max use */ 1566 5); /* approx. 3% false positives at max use */
1567 refresh_bf = GNUNET_YES; 1567 refresh_bf = GNUNET_YES;
1568 } 1568 }
1569 GNUNET_free_non_null (fn); 1569 GNUNET_free (fn);
1570 if (NULL == filter) 1570 if (NULL == filter)
1571 { 1571 {
1572 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1572 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,