Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package editorconfig-core-c for openSUSE:Factory checked in at 2024-06-18 22:50:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/editorconfig-core-c (Old) and /work/SRC/openSUSE:Factory/.editorconfig-core-c.new.19518 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "editorconfig-core-c" Tue Jun 18 22:50:42 2024 rev:13 rq:1181414 version:0.12.9 Changes: -------- --- /work/SRC/openSUSE:Factory/editorconfig-core-c/editorconfig-core-c.changes 2024-06-17 19:28:19.127673341 +0200 +++ /work/SRC/openSUSE:Factory/.editorconfig-core-c.new.19518/editorconfig-core-c.changes 2024-06-18 22:50:44.588310739 +0200 @@ -1,0 +2,6 @@ +Mon Jun 17 08:49:42 UTC 2024 - Andreas Stieger <andreas.stie...@gmx.de> + +- update to 0.12.9: + * fix potentially uninitialized local (variable|pointer) + +------------------------------------------------------------------- Old: ---- editorconfig-core-c-0.12.8.tar.gz New: ---- editorconfig-core-c-0.12.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ editorconfig-core-c.spec ++++++ --- /var/tmp/diff_new_pack.2dAGKE/_old 2024-06-18 22:50:45.568346879 +0200 +++ /var/tmp/diff_new_pack.2dAGKE/_new 2024-06-18 22:50:45.572347027 +0200 @@ -18,7 +18,7 @@ Name: editorconfig-core-c -Version: 0.12.8 +Version: 0.12.9 Release: 0 Summary: EditorConfig core library written in C License: BSD-2-Clause AND BSD-3-Clause ++++++ editorconfig-core-c-0.12.8.tar.gz -> editorconfig-core-c-0.12.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/editorconfig-core-c-0.12.8/CHANGELOG new/editorconfig-core-c-0.12.9/CHANGELOG --- old/editorconfig-core-c-0.12.8/CHANGELOG 2024-06-13 00:04:41.000000000 +0200 +++ new/editorconfig-core-c-0.12.9/CHANGELOG 2024-06-17 01:57:14.000000000 +0200 @@ -1,3 +1,7 @@ +v0.12.9 + +- lib/ec_glob: Fix potentially uninitialized variable warning. + v0.12.8 - Bump CMake requirement to 3.16.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/editorconfig-core-c-0.12.8/CMakeLists.txt new/editorconfig-core-c-0.12.9/CMakeLists.txt --- old/editorconfig-core-c-0.12.8/CMakeLists.txt 2024-06-13 00:04:41.000000000 +0200 +++ new/editorconfig-core-c-0.12.9/CMakeLists.txt 2024-06-17 01:57:14.000000000 +0200 @@ -29,7 +29,7 @@ cmake_minimum_required(VERSION 3.16.3) cmake_policy(VERSION 3.16.3) -project(editorconfig VERSION "0.12.8" LANGUAGES C) +project(editorconfig VERSION "0.12.9" LANGUAGES C) set(PROJECT_VERSION_SUFFIX "") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/editorconfig-core-c-0.12.8/INSTALL.md new/editorconfig-core-c-0.12.9/INSTALL.md --- old/editorconfig-core-c-0.12.8/INSTALL.md 2024-06-13 00:04:41.000000000 +0200 +++ new/editorconfig-core-c-0.12.9/INSTALL.md 2024-06-17 01:57:14.000000000 +0200 @@ -31,7 +31,7 @@ In principle, you should be able to build the source using any C compiler that is C99 compliant (i.e., virtually any C compiler that is not archaic). Before -installing, you need to install the building tool [cmake][] (version >= 2.8.12) +installing, you need to install the building tool [cmake][] (version >= 3.16.3) and dependency [PCRE2][]. To install cmake and pcre with package manager: - Arch Linux: `pacman -S cmake pcre2` @@ -116,7 +116,7 @@ Automated Build on Windows ========================== -Requirements on Windows are [Visual Studio] 2015, 2017, 2019 or 2022, [cmake] 2.8.12 or higher and Powershell 3 or higher. For Visual Studio the community edition is sufficient, but the [C++ workload](https://docs.microsoft.com/en-us/cpp/build/vscpp-step-0-installation?view=vs-2017) is required. +Requirements on Windows are [Visual Studio] 2015, 2017, 2019 or 2022, [cmake] 3.16.3 or higher and Powershell 3 or higher. For Visual Studio the community edition is sufficient, but the [C++ workload](https://docs.microsoft.com/en-us/cpp/build/vscpp-step-0-installation?view=vs-2017) is required. Non-static build is currently not supported. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/editorconfig-core-c-0.12.8/src/lib/ec_glob.c new/editorconfig-core-c-0.12.9/src/lib/ec_glob.c --- old/editorconfig-core-c-0.12.8/src/lib/ec_glob.c 2024-06-13 00:04:41.000000000 +0200 +++ new/editorconfig-core-c-0.12.9/src/lib/ec_glob.c 2024-06-17 01:57:14.000000000 +0200 @@ -91,7 +91,7 @@ pcre2_code * re; int rc; size_t * pcre_result; - pcre2_match_data * pcre_match_data; + pcre2_match_data * pcre_match_data = NULL; char l_pattern[2 * PATTERN_MAX]; _Bool are_braces_paired = 1; UT_array * nums; /* number ranges */