summaryrefslogtreecommitdiff
path: root/epg.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-09-10 11:00:59 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2015-09-10 11:00:59 +0200
commit18f0ce26fd383f56aa0afdfb9e5ce8ea4c4d0b76 (patch)
treef9c73cd9a27a05d5439be2e1f23c5591ab046bb3 /epg.c
parentbc0de5dbc56d5b4f373f09e92cf07ec773ccab4e (diff)
downloadvdr-18f0ce26fd383f56aa0afdfb9e5ce8ea4c4d0b76.tar.gz
vdr-18f0ce26fd383f56aa0afdfb9e5ce8ea4c4d0b76.tar.bz2
The character 0x0D is now stripped from EPG texts
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 3dde2045..4297350e 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 4.1 2015/08/23 10:39:59 kls Exp $
+ * $Id: epg.c 4.2 2015/09/10 10:58:19 kls Exp $
*/
#include "epg.h"
@@ -661,7 +661,7 @@ static void StripControlCharacters(char *s)
uchar *p = (uchar *)s;
if (l == 2 && *p == 0xC2) // UTF-8 sequence
p++;
- if (*p == 0x86 || *p == 0x87) {
+ if (*p == 0x86 || *p == 0x87 || *p == 0x0D) {
memmove(s, p + 1, len - l + 1); // we also copy the terminating 0!
len -= l;
l = 0;