this is no reason to break:
authorMatthias Wachs <wachs@net.in.tum.de>
Fri, 1 Jul 2011 08:58:42 +0000 (08:58 +0000)
committerMatthias 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

index 2e90bcf3e9f9d1706e8e17c67091f62504c4671c..5d3a548b57d69f0f98e08dab3ea3917dff88f556 100644 (file)
@@ -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);