changeset 36527:6d2f5a28c064

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.
author reimar
date Sun, 19 Jan 2014 10:53:03 +0000
parents e0d75c4ad96b
children 0dca7cd2b32b
files stream/cookies.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/stream/cookies.c	Sun Jan 19 10:48:02 2014 +0000
+++ b/stream/cookies.c	Sun Jan 19 10:53:03 2014 +0000
@@ -89,7 +89,7 @@
 }
 
 /* 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;