1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-24 00:58:48 -05:00

http2: remove unused variable

Closes #2570
This commit is contained in:
steini2000 2018-05-14 17:49:06 +02:00 committed by Daniel Stenberg
parent d6dd322d7a
commit 0055545705
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -559,7 +559,6 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
struct http_conn *httpc = &conn->proto.httpc; struct http_conn *httpc = &conn->proto.httpc;
struct Curl_easy *data_s = NULL; struct Curl_easy *data_s = NULL;
struct HTTP *stream = NULL; struct HTTP *stream = NULL;
static int lastStream = -1;
int rv; int rv;
size_t left, ncopy; size_t left, ncopy;
int32_t stream_id = frame->hd.stream_id; int32_t stream_id = frame->hd.stream_id;
@ -590,9 +589,6 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
return 0; return 0;
} }
data_s = nghttp2_session_get_stream_user_data(session, stream_id); data_s = nghttp2_session_get_stream_user_data(session, stream_id);
if(lastStream != stream_id) {
lastStream = stream_id;
}
if(!data_s) { if(!data_s) {
H2BUGF(infof(conn->data, H2BUGF(infof(conn->data,
"No Curl_easy associated with stream: %x\n", "No Curl_easy associated with stream: %x\n",