# HG changeset patch # User voroshil # Date 1192343331 0 # Node ID 0dca70b5337b591d10b8463826b14af49d8eea71 # Parent 21bddf1a7126d8a626f2762e8c13934bc1333a29 8 bytes buffer is not enough for at least SECAM-DK. Increase it to 20. diff -r 21bddf1a7126 -r 0dca70b5337b stream/tv.c --- 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);