gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libextractor] 14/27: add missing continue if max meta data


From: gnunet
Subject: [GNUnet-SVN] [libextractor] 14/27: add missing continue if max meta data was reached to avoid use after free
Date: Sun, 15 Oct 2017 21:34:38 +0200

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

grothoff pushed a commit to branch master
in repository libextractor.

commit 58626426a3f4e83f006a055172670d340cbe2da3
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Oct 15 20:28:05 2017 +0200

    add missing continue if max meta data was reached to avoid use after free
---
 src/main/extractor_ipc_gnu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/extractor_ipc_gnu.c b/src/main/extractor_ipc_gnu.c
index 146fd49f..7eedfc71 100644
--- a/src/main/extractor_ipc_gnu.c
+++ b/src/main/extractor_ipc_gnu.c
@@ -535,6 +535,7 @@ EXTRACTOR_IPC_channel_recv_ (struct EXTRACTOR_Channel 
**channels,
              LOG ("Inbound message from channel too large, aborting\n");
              EXTRACTOR_IPC_channel_destroy_ (channel);
              channels[i] = NULL;
+              continue;
            }
          channel->mdata_size *= 2;
          if (channel->mdata_size > MAX_META_DATA)

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



reply via email to

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