- Fix bug uncovered by clang34.

- Bump PORTREVISION.

Submitted by:	beefy1 via pkg-fallout
This commit is contained in:
Juergen Lock 2014-03-29 14:15:28 +00:00
parent ae20f5b94c
commit f356c31cb6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=349518
2 changed files with 12 additions and 0 deletions

View file

@ -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

View file

@ -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();