mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:01:41 +03:00
rtsp: remove redundant condition
'rtsp' always evaluates to true. Spotted by CodeSonar. Closes #17317
This commit is contained in:
parent
c5398fa393
commit
da06f01ab9
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ static CURLcode rtsp_done(struct Curl_easy *data,
|
|||
|
||||
httpStatus = Curl_http_done(data, status, premature);
|
||||
|
||||
if(rtsp && !status && !httpStatus) {
|
||||
if(!status && !httpStatus) {
|
||||
/* Check the sequence numbers */
|
||||
long CSeq_sent = rtsp->CSeq_sent;
|
||||
long CSeq_recv = rtsp->CSeq_recv;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue