cookies.c: cols must (and does) have 7 elements.

Doesn't affect the generated code, but avoids confusion
in both humans and newer Coverity versions.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@36623 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2014-01-19 10:53:03 +00:00 committed by wm4
parent 8e2f301ee4
commit 55ea419ae3
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ static char *col_dup(void *talloc_ctx, const char *src)
}
/* Finds the start of all the columns */
static int parse_line(char **ptr, char *cols[6])
static int parse_line(char **ptr, char *cols[7])
{
int col;
cols[0] = *ptr;