-do not segv on controller crash
authorChristian Grothoff <christian@grothoff.org>
Thu, 29 Oct 2015 10:26:34 +0000 (10:26 +0000)
committerChristian Grothoff <christian@grothoff.org>
Thu, 29 Oct 2015 10:26:34 +0000 (10:26 +0000)
src/testbed/testbed_api_testbed.c

index 5fd59fe61cebc3978f5cf0e714164bb159a68f47..2fdd2356aea1a23e9b525ca54a1961a2175028a0 100644 (file)
@@ -624,12 +624,14 @@ interrupt (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
   rc->interrupt_task = GNUNET_SCHEDULER_add_delayed
       (GNUNET_TIME_UNIT_FOREVER_REL, &interrupt, rc);
   rc_cleanup_operations (rc);
-  if ( (GNUNET_NO == rc->shutdown)
-       && (NULL != c)
-       && (0 != (size = GNUNET_CONTAINER_multihashmap32_size (c->opc_map))))
+  if ( (GNUNET_NO == rc->shutdown) &&
+       (NULL != c) &&
+       (NULL != c->opc_map) &&
+       (0 != (size = GNUNET_CONTAINER_multihashmap32_size (c->opc_map))))
   {
-    LOG (GNUNET_ERROR_TYPE_WARNING, "Shutdown postponed as there are "
-         "%u operations currently active\n", size);
+    LOG (GNUNET_ERROR_TYPE_WARNING,
+         "Shutdown postponed as there are %u operations currently active\n",
+         size);
     c->opcq_empty_cb = &wait_op_completion;
     c->opcq_empty_cls = rc;
     return;