Handle error from nghttp2_session_push_back_deferred_data
This commit is contained in:
parent
1e5f4cadde
commit
5044b59453
|
@ -2678,7 +2678,9 @@ static int session_on_connection_window_update_received
|
|||
if(session->remote_window_size > 0) {
|
||||
rv = nghttp2_session_push_back_deferred_data(session);
|
||||
if(rv != 0) {
|
||||
return 0;
|
||||
/* FATAL */
|
||||
assert(rv < NGHTTP2_ERR_FATAL);
|
||||
return rv;
|
||||
}
|
||||
}
|
||||
return nghttp2_session_call_on_frame_received(session, frame);
|
||||
|
|
Loading…
Reference in New Issue