Hello community, here is the log from the commit of package forkstat for openSUSE:Factory checked in at 2020-08-24 15:13:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/forkstat (Old) and /work/SRC/openSUSE:Factory/.forkstat.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "forkstat" Mon Aug 24 15:13:16 2020 rev:14 rq:828649 version:0.02.15 Changes: -------- --- /work/SRC/openSUSE:Factory/forkstat/forkstat.changes 2020-03-08 22:24:51.576104199 +0100 +++ /work/SRC/openSUSE:Factory/.forkstat.new.3399/forkstat.changes 2020-08-24 15:13:47.426706536 +0200 @@ -1,0 +2,6 @@ +Mon Aug 17 12:41:40 UTC 2020 - Dirk Mueller <[email protected]> + +- update to 0.02.15: + * add missing memory initialization to zero + +------------------------------------------------------------------- Old: ---- forkstat-0.02.14.tar.xz New: ---- forkstat-0.02.15.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ forkstat.spec ++++++ --- /var/tmp/diff_new_pack.d9sztd/_old 2020-08-24 15:13:48.062706846 +0200 +++ /var/tmp/diff_new_pack.d9sztd/_new 2020-08-24 15:13:48.066706848 +0200 @@ -18,7 +18,7 @@ Name: forkstat -Version: 0.02.14 +Version: 0.02.15 Release: 0 Summary: Process fork/exec/exit monitoring tool License: GPL-2.0-or-later ++++++ forkstat-0.02.14.tar.xz -> forkstat-0.02.15.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/forkstat-0.02.14/Makefile new/forkstat-0.02.15/Makefile --- old/forkstat-0.02.14/Makefile 2020-02-28 16:02:57.000000000 +0100 +++ new/forkstat-0.02.15/Makefile 2020-07-04 12:17:09.000000000 +0200 @@ -16,7 +16,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # -VERSION=0.02.14 +VERSION=0.02.15 # # Version "Perspicacious Process Peeker" # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/forkstat-0.02.14/forkstat.c new/forkstat-0.02.15/forkstat.c --- old/forkstat-0.02.14/forkstat.c 2020-02-28 16:02:57.000000000 +0100 +++ new/forkstat-0.02.15/forkstat.c 2020-07-04 12:17:09.000000000 +0200 @@ -793,6 +793,7 @@ const int fd = 0; struct winsize ws; + (void)memset(&ws, 0, sizeof(ws)); /* if tty and we can get a sane width, return it */ if (isatty(fd) && (ioctl(fd, TIOCGWINSZ, &ws) != -1) &&
