diff options
| author | Rasmus Lerdorf <rasmus@lerdorf.com> | 2013-10-19 17:37:59 -0700 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@lerdorf.com> | 2013-10-19 17:37:59 -0700 |
| commit | 813e86765263aa91a3c5c4f72b2c40b7becb58a4 (patch) | |
| tree | b7e85c70a28b2bf8e2fa3c5681206a8a0180d8ef /sapi | |
| parent | a55d3b9295bec513553bff2522c4720737c4c398 (diff) | |
| download | php-git-813e86765263aa91a3c5c4f72b2c40b7becb58a4.tar.gz | |
Initialize these to make Coverity happy
Diffstat (limited to 'sapi')
| -rw-r--r-- | sapi/fpm/fpm/fastcgi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sapi/fpm/fpm/fastcgi.c b/sapi/fpm/fpm/fastcgi.c index cf3f098c53..56b6bfd8cf 100644 --- a/sapi/fpm/fpm/fastcgi.c +++ b/sapi/fpm/fpm/fastcgi.c @@ -426,8 +426,9 @@ static int fcgi_get_params(fcgi_request *req, unsigned char *p, unsigned char *e char buf[128]; char *tmp = buf; size_t buf_size = sizeof(buf); - int name_len, val_len; - uint eff_name_len; + int name_len = 0; + int val_len = 0; + uint eff_name_lenk = 0; char *s; int ret = 1; size_t bytes_consumed; |
