summaryrefslogtreecommitdiff
path: root/epg.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-22 12:03:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-22 12:03:55 +0200
commit9c984d444368c8578d9e77959da810e3193fd107 (patch)
treeca8df32c2a162ef2901ac45811c5b53e591aeea6 /epg.c
parentf353cb7c64b3c2d4d380460fbd7508f2e509aaff (diff)
downloadvdr-9c984d444368c8578d9e77959da810e3193fd107.tar.gz
vdr-9c984d444368c8578d9e77959da810e3193fd107.tar.bz2
Fixed handling empty titles in cEvent::FixEpgBugs()
Diffstat (limited to 'epg.c')
-rw-r--r--epg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epg.c b/epg.c
index 0525008e..bc448cf8 100644
--- a/epg.c
+++ b/epg.c
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.c 1.71 2006/04/17 12:18:59 kls Exp $
+ * $Id: epg.c 1.72 2006/04/22 12:02:47 kls Exp $
*/
#include "epg.h"
@@ -445,7 +445,7 @@ void cEvent::FixEpgBugs(void)
strreplace(description, '\x86', ' ');
strreplace(description, '\x87', ' ');
- if (!title) {
+ if (isempty(title)) {
// we don't want any "(null)" titles
title = strcpyrealloc(title, tr("No title"));
EpgBugFixStat(12, ChannelID());