0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

8 bytes buffer is not enough for at least SECAM-DK.

Increase it to 20.



git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24781 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
voroshil 2007-10-14 06:28:51 +00:00
parent 19d217a981
commit f9a227eb94

View File

@ -207,7 +207,7 @@ static int demux_tv_fill_buffer(demuxer_t *demux, demux_stream_t *ds)
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);