aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mq.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 0ada6e9b0..312fb3ff0 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -612,10 +612,8 @@ GNUNET_MQ_set_handlers_closure (struct GNUNET_MQ_Handle *mq,
612const struct GNUNET_MessageHeader * 612const struct GNUNET_MessageHeader *
613GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq) 613GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq)
614{ 614{
615 if (NULL == mq->current_envelope) 615 GNUNET_assert (NULL != mq->current_envelope);
616 GNUNET_assert (0); 616 GNUNET_assert (NULL == mq->current_envelope->mh);
617 if (NULL == mq->current_envelope->mh)
618 GNUNET_assert (0);
619 return mq->current_envelope->mh; 617 return mq->current_envelope->mh;
620} 618}
621 619