Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package file for openSUSE:Factory checked in 
at 2025-02-22 19:04:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/file (Old)
 and      /work/SRC/openSUSE:Factory/.file.new.1873 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "file"

Sat Feb 22 19:04:16 2025 rev:140 rq:1247564 version:5.46

Changes:
--------
--- /work/SRC/openSUSE:Factory/file/file.changes        2024-11-30 
13:27:04.151764520 +0100
+++ /work/SRC/openSUSE:Factory/.file.new.1873/file.changes      2025-02-22 
19:04:20.393260058 +0100
@@ -1,0 +2,6 @@
+Fri Feb 21 07:27:07 UTC 2025 - Dr. Werner Fink <wer...@suse.de>
+
+- Add patch boo1237209.patch temporary
+  * Fix stack overrun (boo#1237209)
+
+-------------------------------------------------------------------

New:
----
  boo1237209.patch

BETA DEBUG BEGIN:
  New:/work/SRC/openSUSE:Factory/.file.new.1873/file.changes-
/work/SRC/openSUSE:Factory/.file.new.1873/file.changes:- Add patch 
boo1237209.patch temporary
/work/SRC/openSUSE:Factory/.file.new.1873/file.changes-  * Fix stack overrun 
(boo#1237209)
BETA DEBUG END:

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

Other differences:
------------------
++++++ file.spec ++++++
--- /var/tmp/diff_new_pack.v7RK6t/_old  2025-02-22 19:04:21.681313698 +0100
+++ /var/tmp/diff_new_pack.v7RK6t/_new  2025-02-22 19:04:21.681313698 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package file
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -63,6 +63,7 @@
 Patch32:        file-5.19-clicfs.dif
 Patch37:        file-secure_getenv.patch
 Patch39:        file-5.28-btrfs-image.dif
+Patch42:        boo1237209.patch
 Patch43:        file-seccomp.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %global         _sysconfdir /etc
@@ -127,6 +128,7 @@
 %patch -P 37 -p1 -b .getenv
 %patch -P 39 -p1 -b .btrfs
 %patch -P 0 -b .0
+%patch -P 42 -p1
 %patch -P 43 -p1 -b .seccomp
 test -s src/magic.h.in || cp -p src/magic.h src/magic.h.in
 rm -fv src/magic.h

++++++ python-magic.spec ++++++
--- /var/tmp/diff_new_pack.v7RK6t/_old  2025-02-22 19:04:21.721315365 +0100
+++ /var/tmp/diff_new_pack.v7RK6t/_new  2025-02-22 19:04:21.721315365 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-magic
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++++++ boo1237209.patch ++++++
>From b3384a1fbfa1fee99986e5750ab8e700de4f24ad Mon Sep 17 00:00:00 2001
From: Christos Zoulas <chris...@zoulas.com>
Date: Thu, 5 Dec 2024 18:35:40 +0000
Subject: [PATCH] PR/579: net147: Fix stack overrun.

---
 src/readelf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/readelf.c b/src/readelf.c
index fe4cf5413..d209d86df 100644
--- a/src/readelf.c
+++ b/src/readelf.c
@@ -1728,7 +1728,7 @@ dophn_exec(struct magic_set *ms, int clazz, int swap, int 
fd, off_t off,
        Elf64_Phdr ph64;
        const char *linking_style;
        unsigned char nbuf[NBUFSIZE];
-       char interp[128];
+       char interp[NBUFSIZE];
        ssize_t bufsize;
        size_t offset, align, need = 0;
        int pie = 0, dynamic = 0;

Reply via email to