projects
/
oweals
/
gnunet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0362d15
)
fix NPE
author
Christian Grothoff
<christian@grothoff.org>
Sat, 24 Sep 2016 21:43:16 +0000
(21:43 +0000)
committer
Christian Grothoff
<christian@grothoff.org>
Sat, 24 Sep 2016 21:43:16 +0000
(21:43 +0000)
src/arm/gnunet-service-arm.c
patch
|
blob
|
history
diff --git
a/src/arm/gnunet-service-arm.c
b/src/arm/gnunet-service-arm.c
index 4d5e57db7fee93c8da7135025ce22cad027bd0e5..8c5113774d6416cd517040c3a94b0a242dce02dd 100644
(file)
--- a/
src/arm/gnunet-service-arm.c
+++ b/
src/arm/gnunet-service-arm.c
@@
-318,9
+318,10
@@
broadcast_status (const char *name,
namelen);
if (NULL == unicast)
{
- GNUNET_notification_context_broadcast (notifier,
- &msg->header,
- GNUNET_YES);
+ if (NULL != notifier)
+ GNUNET_notification_context_broadcast (notifier,
+ &msg->header,
+ GNUNET_YES);
GNUNET_MQ_discard (env);
}
else