svn commit: r349518 - in head/www/vdr-plugin-live: . files
Juergen Lock
nox at FreeBSD.org
Sat Mar 29 14:15:29 UTC 2014
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();
More information about the svn-ports-head
mailing list