aboutsummaryrefslogtreecommitdiff
path: root/lib/rtsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rtsp.c')
-rw-r--r--lib/rtsp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/rtsp.c b/lib/rtsp.c
index 8f3218947..8aaac89ff 100644
--- a/lib/rtsp.c
+++ b/lib/rtsp.c
@@ -461,15 +461,17 @@ CURLcode Curl_rtsp(struct connectdata *conn, bool *done)
if(!Curl_checkheaders(data, "Content-Type:")) {
result = Curl_add_bufferf(req_buffer,
"Content-Type: text/parameters\r\n");
+ if(result)
+ return result;
}
- if(result)
- return result;
}
if(rtspreq == RTSPREQ_ANNOUNCE) {
if(!Curl_checkheaders(data, "Content-Type:")) {
result = Curl_add_bufferf(req_buffer,
"Content-Type: application/sdp\r\n");
+ if(result)
+ return result;
}
}