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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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++);