Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sharutils for openSUSE:Factory checked in at 2024-05-29 19:35:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sharutils (Old) and /work/SRC/openSUSE:Factory/.sharutils.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sharutils" Wed May 29 19:35:20 2024 rev:33 rq:1177331 version:4.15.2 Changes: -------- --- /work/SRC/openSUSE:Factory/sharutils/sharutils.changes 2024-03-03 20:19:08.389436496 +0100 +++ /work/SRC/openSUSE:Factory/.sharutils.new.24587/sharutils.changes 2024-05-29 19:35:36.755968616 +0200 @@ -1,0 +2,7 @@ +Tue May 14 08:47:48 UTC 2024 - pgaj...@suse.com + +- fix build with gcc14 +- modified patches + % sharutils-CVE-2018-1000097-fix_buffer_overflow.patch + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sharutils.spec ++++++ --- /var/tmp/diff_new_pack.sxYzsT/_old 2024-05-29 19:35:37.343989913 +0200 +++ /var/tmp/diff_new_pack.sxYzsT/_new 2024-05-29 19:35:37.343989913 +0200 @@ -1,7 +1,7 @@ # # spec file for package sharutils # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++++++ sharutils-CVE-2018-1000097-fix_buffer_overflow.patch ++++++ --- /var/tmp/diff_new_pack.sxYzsT/_old 2024-05-29 19:35:37.383991361 +0200 +++ /var/tmp/diff_new_pack.sxYzsT/_new 2024-05-29 19:35:37.387991506 +0200 @@ -11,7 +11,7 @@ looks_like_shell_code (char const * buf) { - while (isspace ((int) *buf)) buf++; -+ intptr_t buf_end = buf + rw_base_size; ++ intptr_t buf_end = (intptr_t)buf + rw_base_size; + while (isspace ((int) *buf) && buf < buf_end) buf++; switch (*buf) {