changeset 24753:0dca70b5337b

8 bytes buffer is not enough for at least SECAM-DK. Increase it to 20.
author voroshil
date Sun, 14 Oct 2007 06:28:51 +0000
parents 21bddf1a7126
children 1c9d285e5a25
files stream/tv.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/stream/tv.c	Sun Oct 14 05:56:17 2007 +0000
+++ b/stream/tv.c	Sun Oct 14 06:28:51 2007 +0000
@@ -207,7 +207,7 @@
 static int norm_from_string(tvi_handle_t *tvh, char* norm)
 {
     tvi_functions_t *funcs = tvh->functions;
-    char str[8];
+    char str[20];
     int ret;
 
     strncpy(str, norm, sizeof(str)-1);