commit e61d64d18584497197bb173c9c23a0359fc5b0c2 parent 341704937b8b07b415376f8f0bd13bbc7d26d44c Author: Bart Polot <bart@net.in.tum.de> Date: Fri, 2 Oct 2015 03:37:44 +0000 - removed false break Diffstat:
| M | src/cadet/gnunet-service-cadet_channel.c | | | 7 | +++++-- |
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/cadet/gnunet-service-cadet_channel.c b/src/cadet/gnunet-service-cadet_channel.c @@ -2124,8 +2124,11 @@ GCCH_handle_data_ack (struct CadetChannel *ch, } else { - /* Work was done but no task was pending? Shouldn't happen! */ - GNUNET_break (0); + /* Work was done but no task was pending. + * Task was cancelled by a retransmission that is sitting in the queue. + */ + // FIXME add test to make sure this is the case, probably add return + // value to GCCH_send_prebuilt_message } } }