Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package bctoolbox for openSUSE:Factory 
checked in at 2022-06-08 14:24:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bctoolbox (Old)
 and      /work/SRC/openSUSE:Factory/.bctoolbox.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bctoolbox"

Wed Jun  8 14:24:41 2022 rev:34 rq:981164 version:5.1.38

Changes:
--------
--- /work/SRC/openSUSE:Factory/bctoolbox/bctoolbox.changes      2022-05-03 
21:19:38.497049004 +0200
+++ /work/SRC/openSUSE:Factory/.bctoolbox.new.1548/bctoolbox.changes    
2022-06-08 14:25:01.756510419 +0200
@@ -1,0 +2,7 @@
+Tue Jun  7 10:41:32 UTC 2022 - Jan Engelhardt <[email protected]>
+
+- Update to release 5.1.38
+  * Fix wrong read variable resulting by always being in
+    "snapshots" state
+
+-------------------------------------------------------------------
@@ -5 +12 @@
-  * no changelog
+  * No changes for Linux platforms
@@ -11 +18,3 @@
-  * no changelog
+  * Add an API to switch off logs on regex test.
+  * Fix an issue where STUN gathering requests could be sent over
+    IPv6 instead of IPv4 for which they are more useful.

Old:
----
  bctoolbox-5.1.17.tar.bz2

New:
----
  bctoolbox-5.1.38.tar.bz2

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

Other differences:
------------------
++++++ bctoolbox.spec ++++++
--- /var/tmp/diff_new_pack.DtwLFq/_old  2022-06-08 14:25:02.244511025 +0200
+++ /var/tmp/diff_new_pack.DtwLFq/_new  2022-06-08 14:25:02.264511049 +0200
@@ -18,7 +18,7 @@
 
 %define sover   1
 Name:           bctoolbox
-Version:        5.1.17
+Version:        5.1.38
 Release:        0
 Summary:        Utility library for software from Belledonne Communications
 License:        GPL-3.0-only
@@ -76,9 +76,7 @@
 This package the contains shared library for testing component.
 
 %prep
-%setup -q
-%patch0 -p1
-%patch1 -p1
+%autosetup -p1
 
 %build
 %cmake -DENABLE_STATIC=OFF

++++++ bctoolbox-5.1.17.tar.bz2 -> bctoolbox-5.1.38.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bctoolbox-5.1.17/cmake/BcToolboxCMakeUtils.cmake 
new/bctoolbox-5.1.38/cmake/BcToolboxCMakeUtils.cmake
--- old/bctoolbox-5.1.17/cmake/BcToolboxCMakeUtils.cmake        2022-03-29 
19:10:26.000000000 +0200
+++ new/bctoolbox-5.1.38/cmake/BcToolboxCMakeUtils.cmake        2022-05-27 
21:35:26.000000000 +0200
@@ -203,8 +203,8 @@
 
                # Check git describe to see if we are on a release or not
                set(snapshots_or_releases_state "snapshots")
-               if(NOT GIT_DESC MATCHES ".*(alpha|beta).*")
-                       set(snapshots_or_release_state "releases")
+               if(NOT GIT_DESCRIBE_VERSION MATCHES ".*(alpha|beta).*")
+                       set(snapshots_or_releases_state "releases")
                endif()
 
                set(${OUTPUT_VERSION} "${snapshots_or_releases_state}" 
PARENT_SCOPE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bctoolbox-5.1.17/src/utils/port.c 
new/bctoolbox-5.1.38/src/utils/port.c
--- old/bctoolbox-5.1.17/src/utils/port.c       2022-03-29 19:10:26.000000000 
+0200
+++ new/bctoolbox-5.1.38/src/utils/port.c       2022-05-27 21:35:26.000000000 
+0200
@@ -1508,6 +1508,7 @@
                        /* Resize the allocated memory if necessary.  */
                        if (wp + len + 1 > result + allocated)
                        {
+                               intptr_t current_offset = wp - result;
                                allocated = (allocated + len) * 2;
                                newp = (char *) realloc (result, allocated);
                                if (newp == NULL)
@@ -1515,7 +1516,7 @@
                                        free (result);
                                        return NULL;
                                }
-                               wp = newp + (wp - result);
+                               wp = newp + current_offset;
                                result = newp;
                        }
                        memcpy (wp, s, len);

Reply via email to