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

miss the first letter
This commit is contained in:
Daniel Stenberg 2003-04-08 14:48:38 +00:00
Родитель 696f95bb0a
Коммит 1a2db0dfb1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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++);