aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fs/gnunet-service-fs_pr.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fs/gnunet-service-fs_pr.c b/src/fs/gnunet-service-fs_pr.c
index 5ebca1ad7..dcaba1203 100644
--- a/src/fs/gnunet-service-fs_pr.c
+++ b/src/fs/gnunet-service-fs_pr.c
@@ -358,9 +358,10 @@ GSF_pending_request_create_ (enum GSF_PendingRequestOptions options,
358 GNUNET_assert (dpr != NULL); 358 GNUNET_assert (dpr != NULL);
359 if (pr == dpr) 359 if (pr == dpr)
360 break; /* let the request live briefly... */ 360 break; /* let the request live briefly... */
361 dpr->rh (dpr->rh_cls, GNUNET_BLOCK_EVALUATION_REQUEST_VALID, dpr, 361 if (NULL != dpr->rh)
362 UINT32_MAX, GNUNET_TIME_UNIT_FOREVER_ABS, GNUNET_BLOCK_TYPE_ANY, 362 dpr->rh (dpr->rh_cls, GNUNET_BLOCK_EVALUATION_REQUEST_VALID, dpr,
363 NULL, 0); 363 UINT32_MAX, GNUNET_TIME_UNIT_FOREVER_ABS, GNUNET_BLOCK_TYPE_ANY,
364 NULL, 0);
364 GSF_pending_request_cancel_ (dpr, GNUNET_YES); 365 GSF_pending_request_cancel_ (dpr, GNUNET_YES);
365 } 366 }
366 } 367 }