From 84651b32eb53a979a1496a05b45261f0916fa0e6 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 15 Mar 2016 06:43:29 +0100 Subject: [PATCH] fix uninitialized value --- ext/standard/crypt_freesec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0