Hello community,

here is the log from the commit of package ltrace for openSUSE:Factory checked 
in at 2019-01-11 14:00:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ltrace (Old)
 and      /work/SRC/openSUSE:Factory/.ltrace.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ltrace"

Fri Jan 11 14:00:33 2019 rev:39 rq:662839 version:0.7.91

Changes:
--------
--- /work/SRC/openSUSE:Factory/ltrace/ltrace.changes    2018-02-08 
14:09:41.979915101 +0100
+++ /work/SRC/openSUSE:Factory/.ltrace.new.28833/ltrace.changes 2019-01-11 
14:00:36.632094688 +0100
@@ -1,0 +2,5 @@
+Fri Jan  4 14:24:14 UTC 2019 - Martin Liška <[email protected]>
+
+- Add gcc9-printf-s-null-argument.patch: boo#1120789.
+
+-------------------------------------------------------------------

New:
----
  gcc9-printf-s-null-argument.patch

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

Other differences:
------------------
++++++ ltrace.spec ++++++
--- /var/tmp/diff_new_pack.KAioNx/_old  2019-01-11 14:00:37.332093982 +0100
+++ /var/tmp/diff_new_pack.KAioNx/_new  2019-01-11 14:00:37.332093982 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ltrace
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -32,7 +32,7 @@
 %endif
 #
 Summary:        Trace the Library and System Calls a Program Makes
-License:        GPL-2.0+
+License:        GPL-2.0-or-later
 Group:          Development/Tools/Debuggers
 Version:        0.7.91
 Release:        0
@@ -46,6 +46,7 @@
 Patch2:         ltrace-fix-build.patch
 Patch3:         ppc-ptrace.patch
 Patch4:         arm-trace.patch
+Patch5:         gcc9-printf-s-null-argument.patch
 
 %description
 Ltrace is a program that runs the specified command until it exits. It
@@ -65,6 +66,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5
 
 %build
 ./autogen.sh

++++++ gcc9-printf-s-null-argument.patch ++++++
--- output.c    2014-09-02 13:39:08.000000000 +0200
+++ ./output.c.new      2019-01-04 15:22:52.118045911 +0100
@@ -658,7 +658,7 @@
 
        /* This mimics the output produced by libunwind below.  */
        fprintf(options.output, " > %s(%s+0x%" PRIx64 ") [%" PRIx64 "]\n",
-               modname, symname, off, pc);
+               modname ?: "(null)", symname ?: "(null)", off, pc);
 
        /* See if we can extract the source line too and print it on
           the next line if we can find it.  */

Reply via email to