Hello community,

here is the log from the commit of package kdegraphics-thumbnailers for 
openSUSE:Factory checked in at 2018-11-13 16:44:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdegraphics-thumbnailers (Old)
 and      /work/SRC/openSUSE:Factory/.kdegraphics-thumbnailers.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdegraphics-thumbnailers"

Tue Nov 13 16:44:06 2018 rev:98 rq:648013 version:18.08.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/kdegraphics-thumbnailers/kdegraphics-thumbnailers.changes
        2018-10-17 08:32:11.934337037 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdegraphics-thumbnailers.new/kdegraphics-thumbnailers.changes
   2018-11-13 17:18:25.502198874 +0100
@@ -1,0 +2,10 @@
+Thu Nov 08 20:43:34 UTC 2018 - [email protected]
+
+- Update to 18.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.3.php
+- Changes since 18.08.2:
+  * Avoid nullptr access (kde#399896)
+
+-------------------------------------------------------------------

Old:
----
  kdegraphics-thumbnailers-18.08.2.tar.xz

New:
----
  kdegraphics-thumbnailers-18.08.3.tar.xz

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

Other differences:
------------------
++++++ kdegraphics-thumbnailers.spec ++++++
--- /var/tmp/diff_new_pack.SqunEn/_old  2018-11-13 17:18:25.870198375 +0100
+++ /var/tmp/diff_new_pack.SqunEn/_new  2018-11-13 17:18:25.878198364 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           kdegraphics-thumbnailers
-Version:        18.08.2
+Version:        18.08.3
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)

++++++ kdegraphics-thumbnailers-18.08.2.tar.xz -> 
kdegraphics-thumbnailers-18.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdegraphics-thumbnailers-18.08.2/ps/gscreator.cpp 
new/kdegraphics-thumbnailers-18.08.3/ps/gscreator.cpp
--- old/kdegraphics-thumbnailers-18.08.2/ps/gscreator.cpp       2018-06-29 
16:37:00.000000000 +0200
+++ new/kdegraphics-thumbnailers-18.08.3/ps/gscreator.cpp       2018-10-19 
11:34:44.000000000 +0200
@@ -233,15 +233,18 @@
     }
   }
 
+  std::auto_ptr<KDSCBBOX> bbox = dsc.bbox();
+
   const bool is_encapsulated = no_dvi &&
     (path.indexOf(QRegExp("\\.epsi?$", Qt::CaseInsensitive)) > 0) &&
-    (dsc.bbox()->width() > 0) && (dsc.bbox()->height() > 0) &&
+     bbox.get() != nullptr &&
+    (bbox->width() > 0) && (bbox->height() > 0) &&
     (dsc.page_count() <= 1);
 
   char translation[64] = "";
   char pagesize[32] = "";
   char resopt[32] = "";
-  std::auto_ptr<KDSCBBOX> bbox = dsc.bbox();
+
   if (is_encapsulated) {
     // GhostScript's rendering at the extremely low resolutions
     // required for thumbnails leaves something to be desired. To


Reply via email to