From: Daniel Stenberg Date: Thu, 18 Jun 2015 12:29:57 +0000 (+0200) Subject: RTSP: removed another piece of dead code X-Git-Tag: curl-7_44_0~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=307f212379c2ffa2181bdc523a7cc951aa8d1452;p=thirdparty%2Fcurl.git RTSP: removed another piece of dead code Coverity CID 1306668 --- diff --git a/lib/rtsp.c b/lib/rtsp.c index e33069a938..c30afd39d3 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;