aboutsummaryrefslogtreecommitdiff
path: root/src/revocation/gnunet-revocation.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-04-21 18:25:36 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-04-21 18:25:36 +0200
commite3866c8f09e173e7d36cce25015ecfbd666cd5bc (patch)
tree9eabafeac99f0fcc7a96a83b375b04c72f6ca43f /src/revocation/gnunet-revocation.c
parent6bda628f704707ab92b17c4006a4a8fcf6bd48dd (diff)
downloadgnunet-e3866c8f09e173e7d36cce25015ecfbd666cd5bc.tar.gz
gnunet-e3866c8f09e173e7d36cce25015ecfbd666cd5bc.zip
update API for cleanup of handle
Diffstat (limited to 'src/revocation/gnunet-revocation.c')
-rw-r--r--src/revocation/gnunet-revocation.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/revocation/gnunet-revocation.c b/src/revocation/gnunet-revocation.c
index 2c46a20e7..de9560172 100644
--- a/src/revocation/gnunet-revocation.c
+++ b/src/revocation/gnunet-revocation.c
@@ -250,7 +250,8 @@ calculate_pow_shutdown (void *cls)
250 GNUNET_SCHEDULER_cancel (pow_task); 250 GNUNET_SCHEDULER_cancel (pow_task);
251 pow_task = NULL; 251 pow_task = NULL;
252 } 252 }
253 GNUNET_REVOCATION_pow_cleanup (ph); 253 if (NULL != ph)
254 GNUNET_REVOCATION_pow_stop (ph);
254} 255}
255 256
256 257