Skip to content
Snippets Groups Projects
Commit 1a2db0df authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

James Bursa fixed a flaw in the content-type extracting code that could

miss the first letter
parent 696f95bb
No related branches found
No related tags found
No related merge requests found
......@@ -568,7 +568,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
int len;
/* Find the first non-space letter */
for(start=k->p+14;
for(start=k->p+13;
*start && isspace((int)*start);
start++);
......
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