Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package brp-check-suse for openSUSE:Factory checked in at 2026-03-20 21:19:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/brp-check-suse (Old) and /work/SRC/openSUSE:Factory/.brp-check-suse.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "brp-check-suse" Fri Mar 20 21:19:56 2026 rev:77 rq:1339583 version:84.87+git20260317.a0eb4ba Changes: -------- --- /work/SRC/openSUSE:Factory/brp-check-suse/brp-check-suse.changes 2023-03-29 23:25:50.475073314 +0200 +++ /work/SRC/openSUSE:Factory/.brp-check-suse.new.8177/brp-check-suse.changes 2026-03-20 21:20:25.111025985 +0100 @@ -1,0 +2,7 @@ +Tue Mar 17 11:35:53 UTC 2026 - Ruediger Oertel <[email protected]> + +- Update to version 84.87+git20260317.a0eb4ba: + * prg-brp-symlink: Check against end of vector before + dereferencing it (boo#1259443) + +------------------------------------------------------------------- Old: ---- brp-check-suse-84.87+git20230324.8680ce4.tar.xz New: ---- brp-check-suse-84.87+git20260317.a0eb4ba.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ brp-check-suse.spec ++++++ --- /var/tmp/diff_new_pack.jghgWC/_old 2026-03-20 21:20:25.743052317 +0100 +++ /var/tmp/diff_new_pack.jghgWC/_new 2026-03-20 21:20:25.743052317 +0100 @@ -1,7 +1,7 @@ # # spec file for package brp-check-suse # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2026 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,7 +23,7 @@ License: GPL-2.0-or-later Group: Development/Tools/Building Requires: perl -Version: 84.87+git20230324.8680ce4 +Version: 84.87+git20260317.a0eb4ba Release: 0 URL: https://github.com/openSUSE/brp-check-suse BuildRequires: gcc-c++ ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.jghgWC/_old 2026-03-20 21:20:25.827055816 +0100 +++ /var/tmp/diff_new_pack.jghgWC/_new 2026-03-20 21:20:25.835056149 +0100 @@ -4,6 +4,6 @@ <param name="changesrevision">6c5fe09a2a2108e70a5724f798ad985b628bbc0a</param></service> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/brp-check-suse.git</param> - <param name="changesrevision">8680ce4fd3495c909fe58b0e4398c4f2d37eb385</param></service></servicedata> + <param name="changesrevision">a0eb4bac1393cad2f794c0a38f3e390882ef9494</param></service></servicedata> (No newline at EOF) ++++++ brp-check-suse-84.87+git20230324.8680ce4.tar.xz -> brp-check-suse-84.87+git20260317.a0eb4ba.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brp-check-suse-84.87+git20230324.8680ce4/.gitignore new/brp-check-suse-84.87+git20260317.a0eb4ba/.gitignore --- old/brp-check-suse-84.87+git20230324.8680ce4/.gitignore 2023-03-24 07:15:32.000000000 +0100 +++ new/brp-check-suse-84.87+git20260317.a0eb4ba/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -prg-brp-symlink/brp-symlink -prg-brp-symlink/tests.new diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brp-check-suse-84.87+git20230324.8680ce4/prg-brp-symlink/main.cpp new/brp-check-suse-84.87+git20260317.a0eb4ba/prg-brp-symlink/main.cpp --- old/brp-check-suse-84.87+git20230324.8680ce4/prg-brp-symlink/main.cpp 2023-03-24 07:15:32.000000000 +0100 +++ new/brp-check-suse-84.87+git20260317.a0eb4ba/prg-brp-symlink/main.cpp 2026-03-17 12:32:35.000000000 +0100 @@ -80,7 +80,7 @@ vector<string>::const_iterator it1 = paths1.begin(); vector<string>::const_iterator it2 = paths2.begin(); // first remove the common parts - while (it1 != paths1.end() && *it1 == *it2) { + while (it1 != paths1.end() && it2 != paths2.end() && *it1 == *it2) { it1++; it2++; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brp-check-suse-84.87+git20230324.8680ce4/prg-brp-symlink/tests.in new/brp-check-suse-84.87+git20260317.a0eb4ba/prg-brp-symlink/tests.in --- old/brp-check-suse-84.87+git20230324.8680ce4/prg-brp-symlink/tests.in 2023-03-24 07:15:32.000000000 +0100 +++ new/brp-check-suse-84.87+git20260317.a0eb4ba/prg-brp-symlink/tests.in 2026-03-17 12:32:35.000000000 +0100 @@ -1377,4 +1377,5 @@ etc/alternatives/subdir|/usr/lib64/libsub usr/lib64/libfoo.so|subdir/libfoo.so usr/lib64/libsub/libfoo.so|libfoo.so.0 -usr/lib64/subdir|/etc/alternatives/subdir \ No newline at end of file +usr/lib64/subdir|/etc/alternatives/subdir +usr/lib/systemd/tests/integration-tests/standalone/integration-tests|.. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/brp-check-suse-84.87+git20230324.8680ce4/prg-brp-symlink/tests.out new/brp-check-suse-84.87+git20260317.a0eb4ba/prg-brp-symlink/tests.out --- old/brp-check-suse-84.87+git20230324.8680ce4/prg-brp-symlink/tests.out 2023-03-24 07:15:32.000000000 +0100 +++ new/brp-check-suse-84.87+git20260317.a0eb4ba/prg-brp-symlink/tests.out 2026-03-17 12:32:35.000000000 +0100 @@ -1378,3 +1378,4 @@ /usr/lib64/libfoo.so|subdir/libfoo.so|subdir/libfoo.so|/etc/alternatives/subdir/libfoo.so /usr/lib64/libsub/libfoo.so|libfoo.so.0|libfoo.so.0|/usr/lib64/libsub/libfoo.so.0 /usr/lib64/subdir|/etc/alternatives/subdir|/etc/alternatives/subdir|/etc/alternatives/subdir +/usr/lib/systemd/tests/integration-tests/standalone/integration-tests|..|..|/usr/lib/systemd/tests/integration-tests
