commit-mailutils
[Top][All Lists]
Advanced

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

[SCM] GNU Mailutils branch, master, updated. rel-2_1-79-g622ccfa


From: Sergey Poznyakoff
Subject: [SCM] GNU Mailutils branch, master, updated. rel-2_1-79-g622ccfa
Date: Thu, 06 May 2010 21:16:44 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Mailutils".

http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=622ccfa2e9a3d07b396aa25d08351147caba43ae

The branch, master has been updated
       via  622ccfa2e9a3d07b396aa25d08351147caba43ae (commit)
      from  d31b2f980ff7e040103428d9cfb227df6e260c6e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 622ccfa2e9a3d07b396aa25d08351147caba43ae
Author: Sergey Poznyakoff <address@hidden>
Date:   Fri May 7 00:15:56 2010 +0300

    Minor fix.
    
    * mailbox/rfc2047.c (getword): Initialize *pret to NULL after freeing
    it.

-----------------------------------------------------------------------

Summary of changes:
 mailbox/rfc2047.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/mailbox/rfc2047.c b/mailbox/rfc2047.c
index 64327d9..bc6972b 100644
--- a/mailbox/rfc2047.c
+++ b/mailbox/rfc2047.c
@@ -51,6 +51,7 @@ getword (char **pret, const char **pstr, int delim)
   const char *end = strchr (start, delim);
 
   free (*pret);
+  *pret = NULL;
   if (!end)
     return MU_ERR_BAD_2047_INPUT;
   len = end - start;


hooks/post-receive
-- 
GNU Mailutils




reply via email to

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