aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rtsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rtsp.c b/lib/rtsp.c
index 032f58f7e..16dfa27cb 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) {