nmh-commits
[Top][All Lists]
Advanced

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

[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated


From: Ralph Corderoy
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1.7-branchpoint-214-g5c01446
Date: Tue, 12 Sep 2017 10:46:41 -0400 (EDT)

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 "The nmh Mail Handling System".

The branch, master has been updated
       via  5c01446c027960e00b33f623212de645475569aa (commit)
       via  459c5e3d66287e314dff8543df32c6c14a8464c6 (commit)
       via  b080f5bec1263d354ca4943e2bc9670cb1e9cfa7 (commit)
       via  f1049604f9c88b9c8470bff8baee72414b724a9a (commit)
       via  5436cec1e0687a896ac15b1e8aa7808f172a396e (commit)
       via  ee7eb520d247d457fe61bcbb0f1f009a889126ed (commit)
       via  63621a81d16ab743de6b57d47578a9a2c670ad22 (commit)
       via  b00e8aa68131f51b6f49e1d632e192cf43b3334c (commit)
       via  96700c374e7b6d762fa69fd26554211d69535dbb (commit)
      from  92c3b05ef3e582d64b3cecfc261fdd66ef13a4ef (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 5c01446c027960e00b33f623212de645475569aa
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 15:34:31 2017 +0100

    Replace `return (0)' and similar with `return 0'.
    
    Just outer parenthesis removed.

commit 459c5e3d66287e314dff8543df32c6c14a8464c6
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 15:02:41 2017 +0100

    Hoick FENDNULL(key) out of the search loop.
    
    `key' is a loop-invariant so can be tested for NULL once before the
    loop.  In one case, this also avoid passing NULL to printf(3) for "%s",
    and means getcpy()s can be replaced with mh_xstrdup()s.

commit b080f5bec1263d354ca4943e2bc9670cb1e9cfa7
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 14:55:16 2017 +0100

    mh_oauth_cred_fn()'s return value no longer needs duplicating.
    
    It now returns a fresh allocation so that can be used directly rather
    than obtaining another copy.

commit f1049604f9c88b9c8470bff8baee72414b724a9a
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 14:32:33 2017 +0100

    mh_oauth_cred_fn(): Always freshly allocate result.
    
    If a `credential-file' context was found, and started with a `/', then
    the m_defs's n_field was returned, otherwise a newly allocated string.
    The caller couldn't tell whether to free the result or not so memory was
    leaked.  Alter it to always freshly allocate the result.  Fixes
    803f25412.

commit 5436cec1e0687a896ac15b1e8aa7808f172a396e
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 13:26:22 2017 +0100

    exmaildir(): Don't leak memory allocated by path().
    
    Bug pre-dates git.

commit ee7eb520d247d457fe61bcbb0f1f009a889126ed
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 13:20:56 2017 +0100

    mime_type(): Don't leak memory allocated by get_file_info().
    
    Fixes b4f2851d4.

commit 63621a81d16ab743de6b57d47578a9a2c670ad22
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 12:40:49 2017 +0100

    lock_file.c: close(2) file descriptor on failure, avoiding leak.
    
    Fixes d6e398f9c.

commit b00e8aa68131f51b6f49e1d632e192cf43b3334c
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 00:07:50 2017 +0100

    mhfixmsg.c: Fix memory leak of temporary filename if write fails.

commit 96700c374e7b6d762fa69fd26554211d69535dbb
Author: Ralph Corderoy <address@hidden>
Date:   Tue Sep 12 00:06:35 2017 +0100

    mhfixmsg.c: Fix memory leaks of boundary string on early returns.

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

Summary of changes:
 config/config.c       |  2 +-
 h/oauth.h             |  2 +-
 sbr/context_del.c     |  3 ++-
 sbr/context_find.c    |  5 +++--
 sbr/context_replace.c |  8 +++++---
 sbr/dtime.c           |  4 ++--
 sbr/ext_hook.c        |  6 +++---
 sbr/fmt_addr.c        |  2 +-
 sbr/fmt_compile.c     | 18 +++++++++---------
 sbr/fmt_rfc2047.c     |  2 +-
 sbr/fmt_scan.c        |  2 +-
 sbr/lock_file.c       |  1 +
 sbr/m_maildir.c       |  6 +++++-
 sbr/mime_type.c       | 18 +++++++-----------
 sbr/oauth.c           |  2 +-
 sbr/oauth_prof.c      | 39 ++++++++++++++++++---------------------
 sbr/ruserpass.c       |  4 ++--
 sbr/seq_list.c        |  4 ++--
 sbr/signals.c         | 10 +++++-----
 sbr/smatch.c          |  2 +-
 sbr/strindex.c        |  2 +-
 uip/aliasbr.c         |  2 +-
 uip/burst.c           |  4 ++--
 uip/fmttest.c         |  2 +-
 uip/mhfixmsg.c        | 15 +++++++++------
 uip/mhlogin.c         |  2 +-
 uip/mhlsbr.c          |  2 +-
 uip/mhparam.c         |  2 +-
 uip/mhparse.c         |  4 ++--
 uip/mhstoresbr.c      |  2 +-
 uip/picksbr.c         |  8 ++++----
 uip/post.c            |  7 ++++---
 uip/replsbr.c         |  2 +-
 uip/sendsbr.c         |  2 +-
 uip/sortm.c           | 22 +++++++++++-----------
 uip/whatnowsbr.c      |  6 +++---
 36 files changed, 115 insertions(+), 109 deletions(-)


hooks/post-receive
-- 
The nmh Mail Handling System



reply via email to

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