Hello community,

here is the log from the commit of package kimageformats for openSUSE:Factory 
checked in at 2019-09-23 12:23:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kimageformats (Old)
 and      /work/SRC/openSUSE:Factory/.kimageformats.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kimageformats"

Mon Sep 23 12:23:57 2019 rev:72 rq:730935 version:5.62.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes      
2019-08-19 21:07:56.780866925 +0200
+++ /work/SRC/openSUSE:Factory/.kimageformats.new.7948/kimageformats.changes    
2019-09-23 12:23:59.741742124 +0200
@@ -1,0 +2,10 @@
+Sat Sep  7 20:36:51 UTC 2019 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.62.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.62.0.php
+- Changes since 5.61.0:
+  * Fix uninitialized memory read
+
+-------------------------------------------------------------------

Old:
----
  kimageformats-5.61.0.tar.xz
  kimageformats-5.61.0.tar.xz.sig

New:
----
  kimageformats-5.62.0.tar.xz
  kimageformats-5.62.0.tar.xz.sig

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

Other differences:
------------------
++++++ kimageformats.spec ++++++
--- /var/tmp/diff_new_pack.C3vUn5/_old  2019-09-23 12:24:00.365742022 +0200
+++ /var/tmp/diff_new_pack.C3vUn5/_new  2019-09-23 12:24:00.369742021 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define _tar_path 5.61
+%define _tar_path 5.62
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -24,7 +24,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:           kimageformats
-Version:        5.61.0
+Version:        5.62.0
 Release:        0
 Summary:        Image format plugins for Qt
 License:        LGPL-2.1-or-later


++++++ kimageformats-5.61.0.tar.xz -> kimageformats-5.62.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.61.0/CMakeLists.txt 
new/kimageformats-5.62.0/CMakeLists.txt
--- old/kimageformats-5.61.0/CMakeLists.txt     2019-08-03 21:33:24.000000000 
+0200
+++ new/kimageformats-5.62.0/CMakeLists.txt     2019-09-07 14:35:26.000000000 
+0200
@@ -3,7 +3,7 @@
 project(KImageFormats)
 
 include(FeatureSummary)
-find_package(ECM 5.61.0  NO_MODULE)
+find_package(ECM 5.62.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kimageformats-5.61.0/src/imageformats/tga.cpp 
new/kimageformats-5.62.0/src/imageformats/tga.cpp
--- old/kimageformats-5.61.0/src/imageformats/tga.cpp   2019-08-03 
21:33:24.000000000 +0200
+++ new/kimageformats-5.62.0/src/imageformats/tga.cpp   2019-09-07 
14:35:26.000000000 +0200
@@ -252,7 +252,10 @@
                 // RLE pixels.
                 assert(pixel_size <= 8);
                 char pixel[8];
-                s.readRawData(pixel, pixel_size);
+                const int dataRead = s.readRawData(pixel, pixel_size);
+                if (dataRead < (int)pixel_size) {
+                    memset(&pixel[dataRead], 0, pixel_size - dataRead);
+                }
                 do {
                     memcpy(dst, pixel, pixel_size);
                     dst += pixel_size;


Reply via email to