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: David Levine
Subject: [nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1.7-branchpoint-769-g95c561c
Date: Thu, 11 Nov 2021 10:19:21 -0500 (EST)

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  95c561c3c8b0ef91cb9bf70f93bd9461b6bba368 (commit)
       via  7f73525dcbb6377768045d23caf04a6a3f9e9034 (commit)
       via  68d56d19bac74636437bea2eefd6b931ef8a6adf (commit)
       via  3be9f9b132201b654e4960197102a359fc4d0d27 (commit)
       via  19e945ba1fa71a7a4e4d0c8af556577441a26e39 (commit)
       via  6a34915f111995911c2f6534e5f16a7cded9c7dd (commit)
       via  3b920ec866141ad7654550e81aa6513f73a834c4 (commit)
       via  3cce9bed9721544efd91ad3c820ae1915081059e (commit)
      from  778dc0b0bbec8ae70d69bd40babc71b4b95fee87 (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 95c561c3c8b0ef91cb9bf70f93bd9461b6bba368
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 10:17:36 2021 -0500

    Removed unused assignment of local variable c.
    
    Resolves dead nested assignment reported by Clang Static Analyzer.

commit 7f73525dcbb6377768045d23caf04a6a3f9e9034
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 10:04:08 2021 -0500

    Check result of send_imap_command() call and return NOTOK on failure.
    
    Resolves dead assignment reported by Clang Static Analyzer.

commit 68d56d19bac74636437bea2eefd6b931ef8a6adf
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 10:00:58 2021 -0500

    Removed final assignment to local startoffset.
    
    Resolves dead assignment reported by Clang Static Analyzer.

commit 3be9f9b132201b654e4960197102a359fc4d0d27
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 09:57:35 2021 -0500

    Removed two assignments to local rc.
    
    Resolves dead assignment and dead nested assignment reported by
    Clang Static Analyzer.

commit 19e945ba1fa71a7a4e4d0c8af556577441a26e39
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 09:47:58 2021 -0500

    Replaced redundant string literal and removed unused local variable.
    
    Resolves dead initialization and dead nested assignment reported by
    Clang Static Analyzer.

commit 6a34915f111995911c2f6534e5f16a7cded9c7dd
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 09:40:36 2021 -0500

    Moved *.plist from CLEANFILES and MAINTAINERCLEANFILES to clean-local.
    
    *.plist are directories so they need to be removed with rm -r.

commit 3b920ec866141ad7654550e81aa6513f73a834c4
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 09:33:36 2021 -0500

    Updated thirdparty/jsmn to its commit 25647e692.
    
    jsmn is now entirely within a header file, so removed jsmn.o from libmh.a.
    jsmn_parse() return type was changed from jsmnerr_t to int.
    jsmn repo was moved from mercurial to git.
    Added thirdparty/README-jsmn.txt to track git version.

commit 3cce9bed9721544efd91ad3c820ae1915081059e
Author: David Levine <levinedl@acm.org>
Date:   Thu Nov 11 08:09:34 2021 -0500

    Move local buffer to static storage.
    
    This resolves bug found by Clang Static Analyzer of stack address
    stored into global variable.

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

Summary of changes:
 Makefile.am                            |   4 +-
 sbr/client.c                           |   3 -
 sbr/fmt_compile.c                      |   2 +-
 sbr/m_getfld.c                         |   5 +-
 sbr/netsec.c                           |   1 -
 sbr/oauth.c                            |   2 +-
 thirdparty/README-jsmn.txt             |   1 +
 thirdparty/jsmn/.clang-format          |  90 +++++
 thirdparty/jsmn/.hg_archival.txt       |   5 -
 thirdparty/jsmn/.travis.yml            |   4 +
 thirdparty/jsmn/Makefile               |  53 +--
 thirdparty/jsmn/README.md              |  75 ++--
 thirdparty/jsmn/example/jsondump.c     | 204 ++++++-----
 thirdparty/jsmn/example/simple.c       | 118 +++----
 thirdparty/jsmn/jsmn.c                 | 311 -----------------
 thirdparty/jsmn/jsmn.h                 | 462 +++++++++++++++++++++++--
 thirdparty/jsmn/jsmn_test.c            | 608 ---------------------------------
 thirdparty/jsmn/library.json           |  16 +
 thirdparty/jsmn/test/test.h            |  31 ++
 thirdparty/jsmn/test/test_default      | Bin 0 -> 33216 bytes
 thirdparty/jsmn/test/test_links        | Bin 0 -> 33216 bytes
 thirdparty/jsmn/test/test_strict       | Bin 0 -> 37312 bytes
 thirdparty/jsmn/test/test_strict_links | Bin 0 -> 37312 bytes
 thirdparty/jsmn/test/tests.c           | 359 +++++++++++++++++++
 thirdparty/jsmn/test/testutil.h        |  96 ++++++
 uip/aliasbr.c                          |   2 +-
 uip/imaptest.c                         |   2 +
 27 files changed, 1280 insertions(+), 1174 deletions(-)
 create mode 100644 thirdparty/README-jsmn.txt
 create mode 100644 thirdparty/jsmn/.clang-format
 delete mode 100644 thirdparty/jsmn/.hg_archival.txt
 create mode 100644 thirdparty/jsmn/.travis.yml
 delete mode 100644 thirdparty/jsmn/jsmn.c
 delete mode 100644 thirdparty/jsmn/jsmn_test.c
 create mode 100644 thirdparty/jsmn/library.json
 create mode 100644 thirdparty/jsmn/test/test.h
 create mode 100755 thirdparty/jsmn/test/test_default
 create mode 100755 thirdparty/jsmn/test/test_links
 create mode 100755 thirdparty/jsmn/test/test_strict
 create mode 100755 thirdparty/jsmn/test/test_strict_links
 create mode 100644 thirdparty/jsmn/test/tests.c
 create mode 100644 thirdparty/jsmn/test/testutil.h


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



reply via email to

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