gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated: Fixed Uninitialized Variabl


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: Fixed Uninitialized Variable warning.
Date: Thu, 04 Jan 2018 23:37:59 +0100

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

arny pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 2fbd104fc Fixed Uninitialized Variable warning.
2fbd104fc is described below

commit 2fbd104fcd69cf952aae454ad704e65d6884cd29
Author: anryko <address@hidden>
AuthorDate: Thu Jan 4 23:37:53 2018 +0100

    Fixed Uninitialized Variable warning.
---
 src/cadet/cadet_api.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cadet/cadet_api.c b/src/cadet/cadet_api.c
index 497c9a4f0..4bb3d570b 100644
--- a/src/cadet/cadet_api.c
+++ b/src/cadet/cadet_api.c
@@ -491,7 +491,7 @@ cadet_mq_send_impl (struct GNUNET_MQ_Handle *mq,
   struct GNUNET_CADET_Handle *h = ch->cadet;
   uint16_t msize;
   struct GNUNET_MQ_Envelope *env;
-  struct GNUNET_CADET_LocalData *cadet_msg;
+  struct GNUNET_CADET_LocalData *cadet_msg = NULL;
 
   if (NULL == h->mq)
   {

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



reply via email to

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