summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-25 16:10:04 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-25 16:10:04 +0100
commit76866e7019e5edd90a8caaa59f563e747b833627 (patch)
tree1a95100546da141c77bf654ee3fcdc81c688ebf7 /channels.c
parent926e83529dc2c6fae98d192e86a7359fb5179251 (diff)
downloadvdr-76866e7019e5edd90a8caaa59f563e747b833627.tar.gz
vdr-76866e7019e5edd90a8caaa59f563e747b833627.tar.bz2
Fixed handling language codes in case there is no audio or Dolby PID
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.c b/channels.c
index d49d7a4d..2ae5bf44 100644
--- a/channels.c
+++ b/channels.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: channels.c 1.20 2004/01/25 15:32:08 kls Exp $
+ * $Id: channels.c 1.21 2004/01/25 16:02:13 kls Exp $
*/
#include "channels.h"
@@ -320,7 +320,7 @@ static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[]
int i = 0;
while (a[i] || i == 0) {
q += sprintf(q, Base == 16 ? "%s%X" : "%s%d", i ? "," : "", a[i]);
- if (n && *n[i])
+ if (a[i] && n && *n[i])
q += sprintf(q, "=%s", n[i]);
i++;
}