Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
http: fix compiler warning, fixes #2871
  • Loading branch information
stbenz authored and perexg committed May 23, 2015
1 parent ef5b43a commit ce2b077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.c
Expand Up @@ -319,7 +319,7 @@ int
http_encoding_valid(http_connection_t *hc, const char *encoding)
{
const char *accept;
char *tokbuf, *tok, *saveptr, *q, *s;
char *tokbuf, *tok, *saveptr = NULL, *q, *s;

accept = http_arg_get(&hc->hc_args, "accept-encoding");
if (!accept)
Expand Down

0 comments on commit ce2b077

Please sign in to comment.