initialise dc variable to satisfy old compilers.
authorSteve Linsell <stevenx.linsell@intel.com>
Thu, 22 Feb 2018 18:24:13 +0000 (13:24 -0500)
committerRich Salz <rsalz@openssl.org>
Thu, 22 Feb 2018 18:54:27 +0000 (13:54 -0500)
commitd16a2c1931534cfc798a15c255e17180844d2ceb
tree3bce3c30fb9c4dda4fc7e402ed08b2dad9dcb4f6
parent6f4b929af0b7dfb6a4d420fc9a8e25016f616c10
initialise dc variable to satisfy old compilers.

When compiling with -Wall on a machine with an old compiler it gives a false
positive that the dc variable which is a structure of type DISPLAY_COLUMNS
could be used uninitialised. In fact the dc variable's members will always get
set in the case it is used, otherwise it is left uninitialised.
This fix just causes the dc variable's members to always get initialised to 0
at declaration, so the false positive will not get flagged.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5337)
apps/openssl.c