Commit fef9530c authored by Alexis La Goutte's avatar Alexis La Goutte

fix error: variable 'mem' set but not used [-Werror=unused-but-set-variable]

parent ab1dd117
...@@ -2219,9 +2219,7 @@ static int session_after_frame_sent1(nghttp2_session *session) { ...@@ -2219,9 +2219,7 @@ static int session_after_frame_sent1(nghttp2_session *session) {
nghttp2_outbound_item *item = aob->item; nghttp2_outbound_item *item = aob->item;
nghttp2_bufs *framebufs = &aob->framebufs; nghttp2_bufs *framebufs = &aob->framebufs;
nghttp2_frame *frame; nghttp2_frame *frame;
nghttp2_mem *mem;
mem = &session->mem;
frame = &item->frame; frame = &item->frame;
if (frame->hd.type != NGHTTP2_DATA) { if (frame->hd.type != NGHTTP2_DATA) {
......
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