From: Anatol Belski Date: Tue, 15 Mar 2016 05:43:29 +0000 (+0100) Subject: fix uninitialized value X-Git-Tag: php-7.0.5RC1~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84651b32eb53a979a1496a05b45261f0916fa0e6;p=php fix uninitialized value --- diff --git a/ext/standard/crypt_freesec.c b/ext/standard/crypt_freesec.c index 0a54e3e836..dddab62a61 100644 --- a/ext/standard/crypt_freesec.c +++ b/ext/standard/crypt_freesec.c @@ -580,7 +580,7 @@ static int des_cipher(const char *in, char *out, uint32_t salt, int count, struct php_crypt_extended_data *data) { - uint32_t l_out, r_out, rawl, rawr; + uint32_t l_out = 0, r_out = 0, rawl, rawr; int retval; setup_salt(salt, data);