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:
11a2d8c
)
this is no reason to break:
author
Matthias Wachs
<wachs@net.in.tum.de>
Fri, 1 Jul 2011 08:58:42 +0000
(08:58 +0000)
committer
Matthias Wachs
<wachs@net.in.tum.de>
Fri, 1 Jul 2011 08:58:42 +0000
(08:58 +0000)
this happens during shutdown, when the
- plugins are unloaded
- the addresses are freed
- and the NAT_unregister does the callback to remove addresses but the plugin adn addresses are already freed
just return is imho fine
src/transport/gnunet-service-transport.c
patch
|
blob
|
history
diff --git
a/src/transport/gnunet-service-transport.c
b/src/transport/gnunet-service-transport.c
index 2e90bcf3e9f9d1706e8e17c67091f62504c4671c..5d3a548b57d69f0f98e08dab3ea3917dff88f556 100644
(file)
--- a/
src/transport/gnunet-service-transport.c
+++ b/
src/transport/gnunet-service-transport.c
@@
-2847,7
+2847,6
@@
plugin_env_notify_address (void *cls,
prev = al;
al = al->next;
}
- GNUNET_break (0);
return;
}
al = GNUNET_malloc (sizeof (struct OwnAddressList) + addrlen);