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 "Hurd".

The branch, master has been updated
       via  a2f64c2462282bb3cf1ad24044c97bb7d6b85e0d (commit)
       via  66553fd7a7bcf7c260b45f2e7ad54e98d33f8080 (commit)
      from  835b293d35a209d38047126443d41fa7090daa4c (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 a2f64c2462282bb3cf1ad24044c97bb7d6b85e0d
Author: Justus Winter <jus...@gnupg.org>
Date:   Sat Aug 5 19:26:25 2017 +0200

    Replace bcopy with memcpy or memmove as appropriate.
    
    * boot/boot.c: Replace bcopy with memcpy or memmove as appropriate.
    * exec/hashexec.c: Likewise.
    * libps/proclist.c: Likewise, but also fix the amount of data copied.
    * libps/procstat.c: Likewise.
    * libps/spec.c: Likewise.
    * libshouldbeinlibc/cacheq.c: Likewise.
    * libshouldbeinlibc/idvec.c: Likewise.
    * libshouldbeinlibc/timefmt.c: Likewise.

commit 66553fd7a7bcf7c260b45f2e7ad54e98d33f8080
Author: Justus Winter <jus...@gnupg.org>
Date:   Sat Aug 5 19:28:38 2017 +0200

    Simplify deallocations.
    
    free (NULL) is a nop, therefore it is not necessary to check that
    first.  Simplify the code accordingly.  This commit is the result of
    the following semantic patch:
    
        @@
        identifier X;
        @@
        -if (X) free (X);
        +free (X);
    
    * console-client/console.c: Simplify accordingly.
    * console-client/driver.c: Likewise.
    * console-client/vga.c: Likewise.
    * ftpfs/dir.c: Likewise.
    * libftpconn/unix.c: Likewise.
    * libps/fmt.c: Likewise.
    * libps/proclist.c: Likewise.
    * libstore/mvol.c: Likewise.
    * nfs/ops.c: Likewise.
    * proc/host.c: Likewise.
    * sutils/fstab.c: Likewise.

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

Summary of changes:
 boot/boot.c                 |  2 +-
 console-client/console.c    |  3 +--
 console-client/driver.c     |  6 ++----
 console-client/vga.c        | 12 ++++--------
 exec/hashexec.c             |  2 +-
 ftpfs/dir.c                 |  3 +--
 libftpconn/unix.c           |  9 +++------
 libps/fmt.c                 |  9 +++------
 libps/proclist.c            |  8 +++-----
 libps/procstat.c            | 10 +++++-----
 libps/spec.c                |  2 +-
 libshouldbeinlibc/cacheq.c  |  2 +-
 libshouldbeinlibc/idvec.c   |  6 +++---
 libshouldbeinlibc/timefmt.c |  2 +-
 libstore/mvol.c             |  3 +--
 nfs/ops.c                   |  3 +--
 proc/host.c                 |  3 +--
 sutils/fstab.c              |  2 +-
 18 files changed, 34 insertions(+), 53 deletions(-)


hooks/post-receive
-- 
Hurd

Reply via email to