diff --git a/lib/rtsp.c b/lib/rtsp.c index 032f58f7e0..16dfa27cb5 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -706,7 +706,7 @@ CURLcode Curl_rtsp_parseheader(struct connectdata *conn, /* Find the first non-space letter */ start = header + 9; - while(*start && ISSPACE(*start)) + while(start && ISSPACE(*start)) start++; if(!start) {