diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2021-06-01 12:02:08 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-06-01 12:02:08 +0300 |
commit | dcdf62549f25f030b6cf518b9adb3d2a84313ea5 (patch) | |
tree | 391cb58b1c83f7b1b2ff6e833dcd2a43e8253bb2 /src | |
parent | 1f85c660cb3e94b60a0f2ec8495f72a43cddb378 (diff) | |
download | nginx-dcdf62549f25f030b6cf518b9adb3d2a84313ea5.tar.gz nginx-dcdf62549f25f030b6cf518b9adb3d2a84313ea5.zip |
HTTP/3: undo 5a92523e50d3 after parser refactoring (e1eb7f4ca9f1).
This is no longer needed after HTTP/3 request processing has moved
into its own function ngx_http_v3_process_header().
Diffstat (limited to 'src')
-rw-r--r-- | src/http/v3/ngx_http_v3_parse.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c index 40366e665..21c73a24d 100644 --- a/src/http/v3/ngx_http_v3_parse.c +++ b/src/http/v3/ngx_http_v3_parse.c @@ -783,7 +783,6 @@ ngx_http_v3_parse_header_l(ngx_connection_t *c, st->literal.length = st->pint.value; if (st->literal.length == 0) { - st->value.data = (u_char *) ""; goto done; } |