From 9353b5e44818293fbf4f5932b92194119a2fc4e6 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Fri, 7 Nov 2014 23:14:00 +0000 Subject: [PATCH] fixing some compiler warnings svn path=/icecast/trunk/httpp/; revision=19281 --- src/httpp/httpp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/httpp/httpp.c b/src/httpp/httpp.c index 22d69cf5..10612bcb 100644 --- a/src/httpp/httpp.c +++ b/src/httpp/httpp.c @@ -91,14 +91,13 @@ static int split_headers(char *data, unsigned long len, char **line) static void parse_headers(http_parser_t *parser, char **line, int lines) { - int i,l; - int whitespace, where, slen; + int i, l; + int whitespace, slen; char *name = NULL; char *value = NULL; /* parse the name: value lines. */ for (l = 1; l < lines; l++) { - where = 0; whitespace = 0; name = line[l]; value = NULL;