Hello community, here is the log from the commit of package varnish for openSUSE:Factory checked in at 2019-08-27 10:28:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/varnish (Old) and /work/SRC/openSUSE:Factory/.varnish.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "varnish" Tue Aug 27 10:28:33 2019 rev:26 rq:726298 version:6.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/varnish/varnish.changes 2019-03-27 16:23:08.887507950 +0100 +++ /work/SRC/openSUSE:Factory/.varnish.new.7948/varnish.changes 2019-08-27 10:28:38.803908779 +0200 @@ -1,0 +2,5 @@ +Mon Aug 26 10:52:05 UTC 2019 - Jan Engelhardt <[email protected]> + +- Add uninit.patch. + +------------------------------------------------------------------- New: ---- uninit.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ varnish.spec ++++++ --- /var/tmp/diff_new_pack.66Vx87/_old 2019-08-27 10:28:39.663908714 +0200 +++ /var/tmp/diff_new_pack.66Vx87/_new 2019-08-27 10:28:39.667908714 +0200 @@ -40,6 +40,7 @@ Source7: varnish.service Source8: varnishlog.service Patch1: varnish-5.1.2-add-fallthrough-comments.patch +Patch2: uninit.patch BuildRequires: python3-docutils BuildRequires: python3-Sphinx BuildRequires: libxslt @@ -98,7 +99,7 @@ %autosetup -p1 %build -export CFLAGS="%optflags -fstack-protector -Wno-error=clobbered" +export CFLAGS="%optflags -fstack-protector -Wno-error=clobbered -Werror=maybe-uninitialized" %ifarch %ix86 export CFLAGS="$CFLAGS -ffloat-store -fexcess-precision=standard" %endif ++++++ uninit.patch ++++++ From: Jan Engelhardt <[email protected]> Date: 2019-08-26 14:13:15.685236019 +0200 varnish screwing itself by use of -Werror. [ 34s] vtc_haproxy.c: In function 'haproxy_start': [ 34s] vtc_haproxy.c:442:10: error: 'pid' may be used uninitialized in this function [-Werror=maybe-uninitialized] [ 34s] 442 | h->pid = pid; [ 34s] | ^ [ 34s] vtc_haproxy.c:413:8: note: 'pid' was declared here [ 34s] 413 | pid_t pid; --- bin/varnishtest/vtc_haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: varnish-6.2.0/bin/varnishtest/vtc_haproxy.c =================================================================== --- varnish-6.2.0.orig/bin/varnishtest/vtc_haproxy.c +++ varnish-6.2.0/bin/varnishtest/vtc_haproxy.c @@ -410,7 +410,7 @@ haproxy_wait_pidfile(struct haproxy *h) char buf_err[1024] = {0}; int usleep_time = 1000; double t0; - pid_t pid; + pid_t pid = 0; vtc_log(h->vl, 3, "wait-pid-file"); for (t0 = VTIM_mono(); VTIM_mono() - t0 < 3;) {
