mirror of
https://github.com/curl/curl.git
synced 2026-06-02 04:24:15 +03:00
James Bursa fixed a flaw in the content-type extracting code that could
miss the first letter
This commit is contained in:
parent
696f95bb0a
commit
1a2db0dfb1
1 changed files with 1 additions and 1 deletions
|
|
@ -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++);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue