Skip to content
Snippets Groups Projects
Commit a54e9c37 authored by Monty Brandenberg's avatar Monty Brandenberg
Browse files

Another fix for Mac warnings. Uninitialized auto check. Not an

actual problem but this will quiet the compiler.
parent a33bec1e
No related branches found
No related tags found
No related merge requests found
......@@ -410,7 +410,7 @@ int parse_content_range_header(char * buffer,
unsigned int * last,
unsigned int * length)
{
char * tok_state(NULL), * tok;
char * tok_state(NULL), * tok(NULL);
bool match(true);
if (! strtok_r(buffer, ": \t", &tok_state))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment