diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2021-08-24 13:03:48 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-08-24 13:03:48 +0300 |
commit | 2ff0af368d08ade41cb164eb54f621361c9f1bec (patch) | |
tree | 43d8dc7336b5022d95a7f06a05814aca2d6a3f05 /src/http/v3/ngx_http_v3_request.c | |
parent | ee13d5f93d4dddefcaf3a2ce44a1ab4489bee369 (diff) | |
download | nginx-2ff0af368d08ade41cb164eb54f621361c9f1bec.tar.gz nginx-2ff0af368d08ade41cb164eb54f621361c9f1bec.zip |
HTTP/3: fixed dead store assignment.
Found by Clang Static Analyzer.
Diffstat (limited to 'src/http/v3/ngx_http_v3_request.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_request.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index 1fcbad1de..0bd585317 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -1217,7 +1217,6 @@ done: b->last_buf = 1; *ll = tl; - ll = &tl->next; } else { |