Commit 2e083352 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Fix crash on http2 downstream disconnect

parent d848b981
......@@ -1556,6 +1556,10 @@ int Http2Session::consume(int32_t stream_id, size_t len)
{
int rv;
if(!session_) {
return 0;
}
rv = nghttp2_session_consume(session_, stream_id, len);
if(rv != 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment