nghttp2_hd: Fix missing return value handling

This commit is contained in:
Tatsuhiro Tsujikawa 2013-10-18 19:48:15 +09:00
parent 0efa6e657f
commit 7b87d71121
1 changed files with 3 additions and 0 deletions

View File

@ -857,6 +857,9 @@ ssize_t nghttp2_hd_deflate_hd(nghttp2_hd_context *deflater,
be removed. */
ent->flags ^= NGHTTP2_HD_FLAG_REFSET;
rv = emit_indexed_block(buf_ptr, buflen_ptr, &offset, ent->index);
if(rv != 0) {
goto fail;
}
}
ent->flags &= ~(NGHTTP2_HD_FLAG_EMIT | NGHTTP2_HD_FLAG_IMPLICIT_EMIT);
}