mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-05 21:21:53 +00:00
In case this condition is true:
if (urhc->items[i] == ';') {
but this is false:
if (found == hashed_result)
for the latest loop iteration value would be set as NULL
This is a bit unfortunate because later we can:
- use it in arithmetics
- dereference it in uwsgi_req_append
To fix that update vallen only if value is not null.
Reported by Coverity sa CID #1100805.