[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-2248-g90a0
From: |
John Darrington |
Subject: |
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-2248-g90a008d |
Date: |
Fri, 07 Oct 2011 16:49:36 +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 PSPP".
The branch, master has been updated
via 90a008db8b2f6e5bec903e584eb68e9bb20c061e (commit)
via 089161cdd3775ea7fbcad894f4957e98ec120de5 (commit)
from 61eeaf756db35a5d25fff81c607d977f000409a1 (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 90a008db8b2f6e5bec903e584eb68e9bb20c061e
Author: John Darrington <address@hidden>
Date: Fri Oct 7 14:15:35 2011 +0200
Fix incorrectly ordered arguments to xcalloc
The gnulib xcalloc call has the following signature:
void *calloc(size_t N, size_t S);
where N is the number of objects and S is the size of each object.
In many places, we had these arguments transposed. In many implementations
this doesn't matter since the two arguments are simply multiplied together.
However, on some systems this can cause problems (ie crash), if S is zero.
This change fixes all calls where the size was being passes as the first
argument instead of the second.
commit 089161cdd3775ea7fbcad894f4957e98ec120de5
Author: John Darrington <address@hidden>
Date: Fri Oct 7 13:28:19 2011 +0200
Fixed a crash in the oneway command
-----------------------------------------------------------------------
Summary of changes:
src/language/stats/ks-one-sample.c | 2 +-
src/language/stats/mcnemar.c | 2 +-
src/language/stats/sign.c | 2 +-
src/language/stats/t-test-indep.c | 2 +-
src/language/stats/t-test-parser.c | 3 +--
src/language/stats/wilcoxon.c | 2 +-
src/math/covariance.c | 6 +++---
src/math/percentiles.c | 2 +-
src/math/trimmed-mean.c | 2 +-
src/math/tukey-hinges.c | 2 +-
src/math/wilcoxon-sig.c | 2 +-
src/ui/gui/psppire-scanf.c | 2 +-
src/ui/gui/widget-io.c | 2 +-
tests/language/stats/oneway.at | 20 ++++++++++++++++++++
14 files changed, 35 insertions(+), 16 deletions(-)
hooks/post-receive
--
GNU PSPP
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-2248-g90a008d,
John Darrington <=