gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 51/222: setopt: store CURLOPT_RTSP_SERVER_CSEQ correctly


From: gnunet
Subject: [gnurl] 51/222: setopt: store CURLOPT_RTSP_SERVER_CSEQ correctly
Date: Thu, 07 Nov 2019 00:09:07 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 8f593f6d3bbd5140fbe8ad4cea780197869e4a22
Author: Daniel Stenberg <address@hidden>
AuthorDate: Thu Sep 19 10:09:21 2019 +0200

    setopt: store CURLOPT_RTSP_SERVER_CSEQ correctly
    
    Fixes bug detected by PVS-Studio
    Fixes #4374
---
 lib/setopt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/setopt.c b/lib/setopt.c
index db3c91a92..7058a249c 100644
--- a/lib/setopt.c
+++ b/lib/setopt.c
@@ -2500,7 +2500,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption 
option, va_list param)
 
   case CURLOPT_RTSP_SERVER_CSEQ:
     /* Same as the above, but for server-initiated requests */
-    data->state.rtsp_next_client_CSeq = va_arg(param, long);
+    data->state.rtsp_next_server_CSeq = va_arg(param, long);
     break;
 
   case CURLOPT_INTERLEAVEDATA:

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]