Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Mar 2014 14:15:28 +0000 (UTC)
From:      Juergen Lock <nox@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r349518 - in head/www/vdr-plugin-live: . files
Message-ID:  <201403291415.s2TEFSUU009292@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nox
Date: Sat Mar 29 14:15:28 2014
New Revision: 349518
URL: http://svnweb.freebsd.org/changeset/ports/349518
QAT: https://qat.redports.org/buildarchive/r349518/

Log:
  - Fix bug uncovered by clang34.
  - Bump PORTREVISION.
  
  Submitted by:	beefy1 via pkg-fallout

Added:
  head/www/vdr-plugin-live/files/patch-pages-multischedule.ecpp   (contents, props changed)
Modified:
  head/www/vdr-plugin-live/Makefile

Modified: head/www/vdr-plugin-live/Makefile
==============================================================================
--- head/www/vdr-plugin-live/Makefile	Sat Mar 29 14:10:22 2014	(r349517)
+++ head/www/vdr-plugin-live/Makefile	Sat Mar 29 14:15:28 2014	(r349518)
@@ -3,6 +3,7 @@
 
 PORTNAME=	vdr-plugin-live
 PORTVERSION=	0.3.0
+PORTREVISION=	1
 CATEGORIES=	www multimedia
 MASTER_SITES=	http://live.vdr-developer.org/downloads/:release \
 		LOCAL/nox/:snapshot

Added: head/www/vdr-plugin-live/files/patch-pages-multischedule.ecpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/vdr-plugin-live/files/patch-pages-multischedule.ecpp	Sat Mar 29 14:15:28 2014	(r349518)
@@ -0,0 +1,11 @@
+--- a/pages/multischedule.ecpp.orig
++++ b/pages/multischedule.ecpp
+@@ -295,7 +295,7 @@ pageTitle = tr("MultiSchedule");
+           cChannel* Channel = Channels.GetByNumber( chan );
+           if ( ! Channel )
+             continue;
+-          if ( Channel->GroupSep() || Channel->Name() == '\0' )
++          if ( Channel->GroupSep() || *Channel->Name() == '\0' )
+             continue;
+           channel_names[ j ] = Channel->Name();
+           channel_IDs[ j ] = Channel->GetChannelID();



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403291415.s2TEFSUU009292>