-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Labels
Description
Description: currently the http2 codec submits trailers to nghttp2 with this function call:
envoy/source/common/http/http2/codec_impl.cc
Line 216 in e059a12
| nghttp2_submit_trailer(parent_.session_, stream_id_, &final_headers[0], final_headers.size()); |
reference binding to null pointer of type 'nghttp2_nv'.
nghttp2 checks for length of the vector before dereferencing, so the code behaves correctly. However, we should clean up trailer submission so that empty trailers don't create ASAN failures.
Reactions are currently unavailable