Commit 56bdfd1d authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Revert "Handle extension frame in session_inbound_frame_reset"

This reverts commit dbffb899.
parent dbffb899
...@@ -231,8 +231,6 @@ static void session_inbound_frame_reset(nghttp2_session *session) { ...@@ -231,8 +231,6 @@ static void session_inbound_frame_reset(nghttp2_session *session) {
nghttp2_session_new(), we rely on the fact that nghttp2_session_new(), we rely on the fact that
iframe->frame.hd.type is 0, so that no free is performed. */ iframe->frame.hd.type is 0, so that no free is performed. */
switch (iframe->frame.hd.type) { switch (iframe->frame.hd.type) {
case NGHTTP2_DATA:
break;
case NGHTTP2_HEADERS: case NGHTTP2_HEADERS:
nghttp2_frame_headers_free(&iframe->frame.headers, mem); nghttp2_frame_headers_free(&iframe->frame.headers, mem);
break; break;
...@@ -257,10 +255,6 @@ static void session_inbound_frame_reset(nghttp2_session *session) { ...@@ -257,10 +255,6 @@ static void session_inbound_frame_reset(nghttp2_session *session) {
case NGHTTP2_WINDOW_UPDATE: case NGHTTP2_WINDOW_UPDATE:
nghttp2_frame_window_update_free(&iframe->frame.window_update); nghttp2_frame_window_update_free(&iframe->frame.window_update);
break; break;
default:
/* extension frame */
nghttp2_frame_extension_free(&iframe->frame.ext);
break;
} }
memset(&iframe->frame, 0, sizeof(nghttp2_frame)); memset(&iframe->frame, 0, sizeof(nghttp2_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