mirror of
https://github.com/moparisthebest/curl
synced 2024-12-24 17:18:48 -05:00
parent
d6dd322d7a
commit
0055545705
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user