Fix Coverity 1201740 & 1201712: uninitialised values
authorPauli <pauli@openssl.org>
Wed, 16 Mar 2022 03:30:03 +0000 (14:30 +1100)
committerPauli <pauli@openssl.org>
Sun, 8 May 2022 07:50:04 +0000 (17:50 +1000)
commit4e720f12fade8d433e5a0eb3ead9017193dac6e7
tree5f76468fed6406d2f564f2485baa4edd351fd35b
parent6d4f63469ed5a0f6e7ccde189e8a6d2bb1d2b26a
Fix Coverity 1201740 & 1201712: uninitialised values

These are both false positives since the `d` array is initialised by
the `DES_cfb_encrypt()` call via the `l2cn` macro.  Rather than ignoring them
and having them crop up later, it's easier to just add an initialiser.

Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/17894)
crypto/evp/e_des.c
crypto/evp/e_des3.c