gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] 08/09: Reconnect to service instead of aborting on


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 08/09: Reconnect to service instead of aborting on a malformed data message
Date: Tue, 31 Jan 2017 05:09:16 +0100

This is an automated email from the git hooks/post-receive script.

bart-polot pushed a commit to branch master
in repository gnunet.

commit 9112c6ee1b16a1aea0d7e3ed96ad8587ee64f86f
Author: Bart Polot <address@hidden>
AuthorDate: Tue Jan 31 04:58:05 2017 +0100

    Reconnect to service instead of aborting on a malformed data message
---
 src/cadet/cadet_api.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/cadet/cadet_api.c b/src/cadet/cadet_api.c
index 9448cc7a5..a1c7e8461 100644
--- a/src/cadet/cadet_api.c
+++ b/src/cadet/cadet_api.c
@@ -958,7 +958,12 @@ handle_local_data (void *cls,
 
   ch = retrieve_channel (h,
                          message->ccn);
-  GNUNET_assert (NULL != ch);
+  if (NULL == ch)
+  {
+    GNUNET_break_op (0);
+    reconnect (h);
+    return;
+  }
 
   payload = (struct GNUNET_MessageHeader *) &message[1];
   type = ntohs (payload->type);

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]