[MPlayer-cvslog] r36623 - trunk/stream/cookies.c
reimar
subversion at mplayerhq.hu
Sun Jan 19 11:53:03 CET 2014
Author: reimar
Date: Sun Jan 19 11:53:03 2014
New Revision: 36623
Log:
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.
Modified:
trunk/stream/cookies.c
Modified: trunk/stream/cookies.c
==============================================================================
--- trunk/stream/cookies.c Sun Jan 19 11:48:02 2014 (r36622)
+++ trunk/stream/cookies.c Sun Jan 19 11:53:03 2014 (r36623)
@@ -89,7 +89,7 @@ static int left_hand_strcmp(const char *
}
/* 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;
More information about the MPlayer-cvslog
mailing list