Commit b7d16101 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Add missing connection error handling

parent cd53bd81
......@@ -4698,7 +4698,12 @@ int nghttp2_session_on_ping_received(nghttp2_session *session,
rv = nghttp2_session_add_ping(session, NGHTTP2_FLAG_ACK,
frame->ping.opaque_data);
if (rv != 0) {
return rv;
if (nghttp2_is_fatal(rv)) {
return rv;
}
return session_handle_invalid_connection(session, frame,
NGHTTP2_ERR_INTERNAL, NULL);
}
}
return session_call_on_frame_received(session, frame);
......
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