diff options
author | steini2000 <36340755+steini2000@users.noreply.github.com> | 2018-05-14 17:49:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-05-14 23:14:04 +0200 |
commit | 005554570528dbaab2d0aaf7280014a7d99fafb7 (patch) | |
tree | bfa8a8ebd224cff609f68f7db01aae02ba0d3fd0 /lib/http2.c | |
parent | d6dd322d7ab2029ef982be7e148e2e7671c015ca (diff) |
http2: remove unused variable
Closes #2570
Diffstat (limited to 'lib/http2.c')
-rw-r--r-- | lib/http2.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/http2.c b/lib/http2.c index 92cb3b62c..da001dfd0 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -559,7 +559,6 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame, struct http_conn *httpc = &conn->proto.httpc; struct Curl_easy *data_s = NULL; struct HTTP *stream = NULL; - static int lastStream = -1; int rv; size_t left, ncopy; 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; } data_s = nghttp2_session_get_stream_user_data(session, stream_id); - if(lastStream != stream_id) { - lastStream = stream_id; - } if(!data_s) { H2BUGF(infof(conn->data, "No Curl_easy associated with stream: %x\n", |