pspp-commits
[Top][All Lists]
Advanced

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

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.2.0-112-g2f3fa


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.2.0-112-g2f3fa7c
Date: Wed, 2 Jan 2019 17:50:33 -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 "GNU PSPP".

The branch, master has been updated
       via  2f3fa7ce38a527554595db9bc51c465da6fb894c (commit)
       via  27ffaa338454a769afb0744fdb0f9102ffdee600 (commit)
       via  c671071609d53f1b16f5a01718ddd2be4387ba7b (commit)
       via  c83f698c8c08b8fa2f231384757052e56bbc2dcf (commit)
       via  bb1ca048fd178b13296604c5ddc8a44751a4ab35 (commit)
       via  7163d44c60105d8a50b4888caed804338eee8b43 (commit)
       via  7b98e6a43231d8bbf3ae79729b5e1ed9acd09d58 (commit)
       via  770c0535c142a0d74cf33f02940100cba9cc1a99 (commit)
       via  9e583dc3ff4b8cae46ac0fb1b1d6816061ea951f (commit)
       via  9d277177e824de0170e1afd3c1db326175e3cfb0 (commit)
       via  d13ba5beebdde110e47fd8f4cd5ff4fd5ab55303 (commit)
      from  9c4f9645b4f0b99ebca6a7a25b81dafd358a7f7a (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 2f3fa7ce38a527554595db9bc51c465da6fb894c
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:46:11 2019 -0800

    matrix-data: Only use as many bytes as necessary to initialize string.
    
    Using strncpy() of a 9-character string to initialize an 8-byte field is
    odd and seems likely to have been a mistake, although a harmless one.
    This makes the situation seem less odd.
    
    Found by GCC 4.9.

commit 27ffaa338454a769afb0744fdb0f9102ffdee600
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:43:02 2019 -0800

    t-test-paired: Fix format specifiers.
    
    Found by GCC.
    
    Fixes: 5cab4cf3322f ("output: Introduce pivot tables.")

commit c671071609d53f1b16f5a01718ddd2be4387ba7b
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:42:04 2019 -0800

    regression: Make sure dep_subscript is really initialized.
    
    Found by GCC 4.9.

commit c83f698c8c08b8fa2f231384757052e56bbc2dcf
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:39:25 2019 -0800

    chisquare: Fix format specifier in chisquare_execute().
    
    Found by GCC.
    
    Fixes: 5cab4cf3322f ("output: Introduce pivot tables.")

commit bb1ca048fd178b13296604c5ddc8a44751a4ab35
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:36:34 2019 -0800

    tab: Fix implementation of "middle" vertical alignment in tab_get_cell().
    
    Found by GCC 4.9.
    
    Fixes: a7a300e7d996 ("output: Support decimal and mixed alignment,")

commit 7163d44c60105d8a50b4888caed804338eee8b43
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:33:56 2019 -0800

    pivot-table: Fix format specifiers.
    
    Found by GCC.
    
    Fixes: 5cab4cf3322f ("output: Introduce pivot tables.")

commit 7b98e6a43231d8bbf3ae79729b5e1ed9acd09d58
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:30:56 2019 -0800

    driver: Fix format specifiers and avoid fixed-size buffer.
    
    The format specifier problem is real.  The fixed-size buffers should not
    be, but it is not worth arguing with GCC.
    
    Fixes: a1b7813a6993 ("output: New page-setup-item.")

commit 770c0535c142a0d74cf33f02940100cba9cc1a99
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:29:10 2019 -0800

    por-file-writer: Use xasprintf() to avoid careful buffer sizing.
    
    GCC 4.9 thinks that this string can overflow the buffer and there's no
    reason not to use xasprintf() here.

commit 9e583dc3ff4b8cae46ac0fb1b1d6816061ea951f
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:26:24 2019 -0800

    por-file-reader: Use xasprintf() to avoid need for careful buffer sizing.
    
    GCC 4.9 complained about this, saying that the output could exceed the
    buffer size.  It doesn't seem worth arguing with it.

commit 9d277177e824de0170e1afd3c1db326175e3cfb0
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:22:54 2019 -0800

    ods-reader: Use proper function type for xml read callback.
    
    The difference between size_t and int is not important on 32-bit, but it
    makes a bit difference on 64-bit.

commit d13ba5beebdde110e47fd8f4cd5ff4fd5ab55303
Author: Ben Pfaff <address@hidden>
Date:   Wed Jan 2 14:22:24 2019 -0800

    pivot-table: Fix type mismatch in equal_indexes().
    
    This function was being called with an 'unsigned int *' but it took it
    as a 'size_t *', which worked fine on 32-bit systems but caused an
    enormous number of tests to fail on 64-bit systems.
    
    Thanks to Alan Mead and John Darrington for assistance.
    
    Fixes: 5cab4cf3322f ("output: Introduce pivot tables.")

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

Summary of changes:
 src/data/ods-reader.c              | 14 ++++++++------
 src/data/por-file-reader.c         |  5 ++---
 src/data/por-file-writer.c         | 11 ++++++-----
 src/language/data-io/matrix-data.c |  2 +-
 src/language/stats/chisquare.c     |  2 +-
 src/language/stats/regression.c    |  4 +++-
 src/language/stats/t-test-paired.c |  6 +++---
 src/output/driver.c                |  8 ++++----
 src/output/pivot-table.c           |  6 +++---
 src/output/tab.c                   |  2 +-
 10 files changed, 32 insertions(+), 28 deletions(-)


hooks/post-receive
-- 
GNU PSPP



reply via email to

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