Date: Mon, 26 Jun 2017 16:19:17 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444376 - in head/comms/qsstv: . files Message-ID: <201706261619.v5QGJHpx089079@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian (src committer) Date: Mon Jun 26 16:19:17 2017 New Revision: 444376 URL: https://svnweb.freebsd.org/changeset/ports/444376 Log: [qsstv] fix uninitialised member access. (I've emailed upstream with this patch) Approved by: db Added: head/comms/qsstv/files/patch-qsstv_sstv_sstvrx.cpp (contents, props changed) Modified: head/comms/qsstv/Makefile Modified: head/comms/qsstv/Makefile ============================================================================== --- head/comms/qsstv/Makefile Mon Jun 26 15:59:11 2017 (r444375) +++ head/comms/qsstv/Makefile Mon Jun 26 16:19:17 2017 (r444376) @@ -2,7 +2,7 @@ PORTNAME= qsstv PORTVERSION= 9.2.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= comms hamradio MASTER_SITES= http://users.telenet.be/on4qz/qsstv/downloads/ \ LOCAL/db Added: head/comms/qsstv/files/patch-qsstv_sstv_sstvrx.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/qsstv/files/patch-qsstv_sstv_sstvrx.cpp Mon Jun 26 16:19:17 2017 (r444376) @@ -0,0 +1,10 @@ +--- qsstv/sstv/sstvrx.cpp.orig 2017-06-26 08:50:09.939282000 -0700 ++++ qsstv/sstv/sstvrx.cpp 2017-06-26 08:50:22.482587000 -0700 +@@ -35,6 +35,7 @@ + { + syncFilterPtr=NULL; + videoFilterPtr=NULL; ++ syncProcPtr=NULL; + #ifndef QT_NO_DEBUG + scopeViewerData=new scopeView("Data Scope"); + scopeViewerSyncNarrow=new scopeView("Sync Scope Narrow");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706261619.v5QGJHpx089079>