Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package audiofile for openSUSE:Factory 
checked in at 2024-03-13 22:17:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/audiofile (Old)
 and      /work/SRC/openSUSE:Factory/.audiofile.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "audiofile"

Wed Mar 13 22:17:02 2024 rev:41 rq:1157295 version:0.3.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/audiofile/audiofile.changes      2024-02-21 
17:53:17.808529439 +0100
+++ /work/SRC/openSUSE:Factory/.audiofile.new.1770/audiofile.changes    
2024-03-13 22:17:51.978699620 +0100
@@ -1,0 +2,8 @@
+Tue Mar 12 16:27:36 UTC 2024 - Takashi Iwai <[email protected]>
+
+- Fix the incorrect argument passed to createTemporaryFile() (bsc#1221308):
+  createTemporaryFile-argument-fix.patch
+- Refresh patch to be applied with -p1, use autosetup macro for cleanup
+- Put COPYING* to licenses
+
+-------------------------------------------------------------------

New:
----
  createTemporaryFile-argument-fix.patch

BETA DEBUG BEGIN:
  New:- Fix the incorrect argument passed to createTemporaryFile() 
(bsc#1221308):
  createTemporaryFile-argument-fix.patch
- Refresh patch to be applied with -p1, use autosetup macro for cleanup
BETA DEBUG END:

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

Other differences:
------------------
++++++ audiofile.spec ++++++
--- /var/tmp/diff_new_pack.FHt2ii/_old  2024-03-13 22:17:52.878732732 +0100
+++ /var/tmp/diff_new_pack.FHt2ii/_new  2024-03-13 22:17:52.878732732 +0100
@@ -45,6 +45,8 @@
 Patch8:         0006-Check-for-division-by-zero-in-BlockCodec-runPull.patch
 # PATCH-FIX-UPSTREAM 0007-set-the-output-chunk-to-the-amount-of-frames.patch 
boo#11115865 [email protected] -- Set output chunk framecount after pull 
https://github.com/mpruett/audiofile/pull/52
 Patch9:         0007-set-the-output-chunk-to-the-amount-of-frames.patch
+# PATCH-FIX-OPENSUSE bsc#1221308 -- correction to audiofile-CVE-2015-7747.patch
+Patch10:        createTemporaryFile-argument-fix.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  gcc-c++
@@ -109,16 +111,7 @@
 NeXT/Sun).
 
 %prep
-%setup -q
-%patch -P 0 -p1
-%patch -P 2
-%patch -P 3 -p1
-%patch -P 4 -p1
-%patch -P 5 -p1
-%patch -P 6 -p1
-%patch -P 7 -p1
-%patch -P 8 -p1
-%patch -P 9 -p1
+%autosetup -p1
 
 %build
 autoreconf -fi
@@ -142,7 +135,8 @@
 
 %files
 %defattr(-, root, root)
-%doc README TODO COPYING* ACKNOWLEDGEMENTS AUTHORS NEWS NOTES
+%doc README TODO ACKNOWLEDGEMENTS AUTHORS NEWS NOTES
+%license COPYING*
 %{_bindir}/sfconvert
 %{_bindir}/sfinfo
 %{_mandir}/man1/sfconvert.1*

++++++ audiofile-gcc6.patch ++++++
--- /var/tmp/diff_new_pack.FHt2ii/_old  2024-03-13 22:17:52.918734203 +0100
+++ /var/tmp/diff_new_pack.FHt2ii/_new  2024-03-13 22:17:52.922734351 +0100
@@ -1,6 +1,11 @@
---- libaudiofile/modules/SimpleModule.h.orig   2016-01-29 12:17:56.906436741 
+0000
-+++ libaudiofile/modules/SimpleModule.h        2016-01-29 12:18:31.610839734 
+0000
-@@ -123,7 +123,7 @@
+---
+ libaudiofile/modules/SimpleModule.h |    2 +-
+ test/NeXT.cpp                       |    6 +++---
+ 2 files changed, 4 insertions(+), 4 deletions(-)
+
+--- a/libaudiofile/modules/SimpleModule.h
++++ b/libaudiofile/modules/SimpleModule.h
+@@ -123,7 +123,7 @@ struct signConverter
        typedef typename IntTypes<Format>::UnsignedType UnsignedType;
  
        static const int kScaleBits = (Format + 1) * CHAR_BIT - 1;
@@ -9,8 +14,8 @@
  
        struct signedToUnsigned : public std::unary_function<SignedType, 
UnsignedType>
        {
---- test/NeXT.cpp.orig 2016-01-29 12:24:59.471342657 +0000
-+++ test/NeXT.cpp      2016-01-29 12:26:49.788623085 +0000
+--- a/test/NeXT.cpp
++++ b/test/NeXT.cpp
 @@ -37,7 +37,7 @@
  
  #include "TestUtilities.h"
@@ -20,7 +25,7 @@
  {
        '.', 's', 'n', 'd',
        0, 0, 0, 24, // offset of 24 bytes
-@@ -57,7 +57,7 @@
+@@ -57,7 +57,7 @@ const char kDataUnspecifiedLength[] =
        0, 55
  };
  
@@ -29,7 +34,7 @@
  {
        '.', 's', 'n', 'd',
        0, 0, 0, 24, // offset of 24 bytes
-@@ -152,7 +152,7 @@
+@@ -152,7 +152,7 @@ TEST(NeXT, Truncated)
        ASSERT_EQ(::unlink(testFileName.c_str()), 0);
  }
  

++++++ createTemporaryFile-argument-fix.patch ++++++
---
 test/sixteen-stereo-to-eight-mono.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/test/sixteen-stereo-to-eight-mono.c
+++ b/test/sixteen-stereo-to-eight-mono.c
@@ -58,7 +58,7 @@ int main (int argc, char **argv)
        afInitChannels(setup, AF_DEFAULT_TRACK, 2);
 
        char testFileName[PATH_MAX];
-       if (!createTemporaryFile("sixteen-to-eight", &testFileName))
+       if (!createTemporaryFile("sixteen-to-eight", testFileName))
        {
                fprintf(stderr, "Could not create temporary file.\n");
                exit(EXIT_FAILURE);

Reply via email to