From 307f212379c2ffa2181bdc523a7cc951aa8d1452 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 18 Jun 2015 14:29:57 +0200 Subject: RTSP: removed another piece of dead code Coverity CID 1306668 --- lib/rtsp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/rtsp.c') diff --git a/lib/rtsp.c b/lib/rtsp.c index e33069a93..c30afd39d 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -440,8 +440,7 @@ static CURLcode rtsp_do(struct connectdata *conn, bool *done) Curl_add_bufferf(req_buffer, "%s %s RTSP/1.0\r\n" /* Request Stream-URI RTSP/1.0 */ "CSeq: %ld\r\n", /* CSeq */ - (p_request ? p_request : ""), p_stream_uri, - rtsp->CSeq_sent); + p_request, p_stream_uri, rtsp->CSeq_sent); if(result) return result; -- cgit v1.2.3