Hello community,

here is the log from the commit of package libnettle for openSUSE:Factory 
checked in at 2015-04-25 16:47:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libnettle (Old)
 and      /work/SRC/openSUSE:Factory/.libnettle.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libnettle"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libnettle/libnettle.changes      2015-04-18 
10:38:25.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libnettle.new/libnettle.changes 2015-04-25 
16:47:11.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Apr 23 09:31:06 UTC 2015 - [email protected]
+
+added patch: off-by-one-test-suite.patch
+
+- Address Sanitizer, found a off-by-one error in the test suite (bnc#928328) 
+
+-------------------------------------------------------------------

New:
----
  off-by-one-test-suite.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libnettle.spec ++++++
--- /var/tmp/diff_new_pack.ttziyE/_old  2015-04-25 16:47:12.000000000 +0200
+++ /var/tmp/diff_new_pack.ttziyE/_new  2015-04-25 16:47:12.000000000 +0200
@@ -29,6 +29,7 @@
 Source1:        https://ftp.gnu.org/gnu/nettle/nettle-%{version}.tar.gz.sig
 Source2:        %{name}.keyring
 Source3:        baselibs.conf
+Patch0:         off-by-one-test-suite.patch
 BuildRequires:  gmp-devel
 BuildRequires:  makeinfo
 BuildRequires:  pkgconfig
@@ -91,6 +92,7 @@
 
 %prep
 %setup -q -n nettle-%{version}
+%patch0
 
 %build
 %configure \



++++++ off-by-one-test-suite.patch ++++++
Index: testsuite/des-compat-test.c
===================================================================
--- testsuite/des-compat-test.c.orig
+++ testsuite/des-compat-test.c
@@ -346,7 +346,7 @@ test_main(void)
 
 #ifndef LIBDES_LIT
        if (verbose) printf("Doing ede ecb\n");
-       for (i=0; i<(NUM_TESTS-1); i++)
+       for (i=0; i<(NUM_TESTS-2); i++)
                {
                if ((j=des_key_sched(&key_data[i], ks)) != 0)
                        {

Reply via email to