Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package jasper for openSUSE:Factory checked 
in at 2024-04-02 16:37:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/jasper (Old)
 and      /work/SRC/openSUSE:Factory/.jasper.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "jasper"

Tue Apr  2 16:37:45 2024 rev:31 rq:1163808 version:4.2.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/jasper/jasper.changes    2024-03-13 
22:17:02.476878531 +0100
+++ /work/SRC/openSUSE:Factory/.jasper.new.1905/jasper.changes  2024-04-02 
16:37:50.475123630 +0200
@@ -1,0 +2,6 @@
+Sun Mar 31 20:57:24 UTC 2024 - Michael Vetter <mvet...@suse.com>
+
+- Update to 4.2.3:
+  * Added a missing check in the JPC codec (#381).
+
+-------------------------------------------------------------------

Old:
----
  version-4.2.2.tar.gz

New:
----
  version-4.2.3.tar.gz

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

Other differences:
------------------
++++++ jasper.spec ++++++
--- /var/tmp/diff_new_pack.gq4g4t/_old  2024-04-02 16:37:51.099146626 +0200
+++ /var/tmp/diff_new_pack.gq4g4t/_new  2024-04-02 16:37:51.099146626 +0200
@@ -20,7 +20,7 @@
 %global __builddir obs_build
 
 Name:           jasper
-Version:        4.2.2
+Version:        4.2.3
 Release:        0
 Summary:        An Implementation of the JPEG-2000 Standard, Part 1
 License:        JasPer-2.0

++++++ version-4.2.2.tar.gz -> version-4.2.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jasper-version-4.2.2/CMakeLists.txt 
new/jasper-version-4.2.3/CMakeLists.txt
--- old/jasper-version-4.2.2/CMakeLists.txt     2024-03-11 21:33:47.000000000 
+0100
+++ new/jasper-version-4.2.3/CMakeLists.txt     2024-03-30 17:57:05.000000000 
+0100
@@ -12,7 +12,7 @@
 # The major, minor, and micro version numbers of the project.
 set(JAS_VERSION_MAJOR 4)
 set(JAS_VERSION_MINOR 2)
-set(JAS_VERSION_PATCH 2)
+set(JAS_VERSION_PATCH 3)
 
 # The shared library versioning information.
 # Guidelines on how to change this information can be found below.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jasper-version-4.2.2/NEWS.txt 
new/jasper-version-4.2.3/NEWS.txt
--- old/jasper-version-4.2.2/NEWS.txt   2024-03-11 21:33:47.000000000 +0100
+++ new/jasper-version-4.2.3/NEWS.txt   2024-03-30 17:57:05.000000000 +0100
@@ -1,3 +1,8 @@
+4.2.3 (2024-03-30)
+==================
+
+* Added a missing check in the JPC codec (#381).
+
 4.2.2 (2024-03-11)
 ==================
 
Binary files old/jasper-version-4.2.2/data/test/bad/318.jpc and 
new/jasper-version-4.2.3/data/test/bad/318.jpc differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jasper-version-4.2.2/src/libjasper/jpc/jpc_dec.c 
new/jasper-version-4.2.3/src/libjasper/jpc/jpc_dec.c
--- old/jasper-version-4.2.2/src/libjasper/jpc/jpc_dec.c        2024-03-11 
21:33:47.000000000 +0100
+++ new/jasper-version-4.2.3/src/libjasper/jpc/jpc_dec.c        2024-03-30 
17:57:05.000000000 +0100
@@ -611,7 +611,9 @@
        if (dec->pkthdrstreams) {
                /* Get the stream containing the packet header data for this
                  tile-part. */
-               if (!(tile->pkthdrstream = 
jpc_streamlist_remove(dec->pkthdrstreams, 0))) {
+               if (jpc_streamlist_numstreams(dec->pkthdrstreams) != 0 &&
+                 !(tile->pkthdrstream = 
jpc_streamlist_remove(dec->pkthdrstreams,
+                 0))) {
                        return -1;
                }
        }

Reply via email to