Skip to content

Commit 84651b3

Browse files
committed
fix uninitialized value
1 parent 704a9ae commit 84651b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/crypt_freesec.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ static int
580580
des_cipher(const char *in, char *out, uint32_t salt, int count,
581581
struct php_crypt_extended_data *data)
582582
{
583-
uint32_t l_out, r_out, rawl, rawr;
583+
uint32_t l_out = 0, r_out = 0, rawl, rawr;
584584
int retval;
585585

586586
setup_salt(salt, data);

0 commit comments

Comments
 (0)