This commit just add implicitly opened stream 1 to streams hash.
This commit is contained in:
Tatsuhiro Tsujikawa 2015-05-22 01:21:59 +09:00 коммит произвёл Daniel Stenberg
Родитель 995c6006fe
Коммит 640f283bbb
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -1268,6 +1268,13 @@ CURLcode Curl_http2_switched(struct connectdata *conn,
nghttp2_strerror(rv), rv);
return CURLE_HTTP2;
}
/* put the SessionHandle in the hash with the stream->stream_id as key */
if(!Curl_hash_add(&httpc->streamsh, &stream->stream_id,
sizeof(stream->stream_id), conn->data)) {
failf(conn->data, "Couldn't add stream to hash!");
return CURLE_OUT_OF_MEMORY;
}
}
else {
/* stream ID is unknown at this point */