<div dir="ltr">description:<br>     when header with a null value,need to reset st->value,otherwise it is taking previous header field's value<br><div><br></div><div># HG changeset patch<br># User Zhiyong Sun <<a href="mailto:sunzhiyong3210@gmail.com">sunzhiyong3210@gmail.com</a>><br># Date 1622174245 14400<br>#      Thu May 27 23:57:25 2021 -0400<br># Branch quic<br># Node ID 93a08c9a9d05a0ba529b369c741baa84defdd832<br># Parent  e6c26cb4d38b8cecb89f26e002bfacf11eafe4a1<br>fix qpack null value issue,when header with a null value,need to reset st->value,otherwise it is taking previous header field's value<br><br>diff -r e6c26cb4d38b -r 93a08c9a9d05 src/http/v3/ngx_http_v3_parse.c<br>--- a/src/http/v3/ngx_http_v3_parse.c   Thu May 27 13:29:00 2021 +0300<br>+++ b/src/http/v3/ngx_http_v3_parse.c   Thu May 27 23:57:25 2021 -0400<br>@@ -1470,6 +1470,8 @@<br><br>         st->literal.length = st->pint.value;<br>         if (st->literal.length == 0) {<br>+           st->value.len = 0;<br>+           st->value.data = NULL;<br>             goto done;<br>         }<br></div></div>