Variable was declared static when it shouldn't be
authorMatt Caswell <matt@openssl.org>
Wed, 10 Feb 2016 16:46:33 +0000 (16:46 +0000)
committerMatt Caswell <matt@openssl.org>
Wed, 10 Feb 2016 17:37:11 +0000 (17:37 +0000)
commit8bd8221be80708825ddb9771d4c9fff67860119b
treeed5bc49d58b4bc1261fac87e35f7f077e22bd738
parent5e136d7abf0945664fa40c7a032abed13fd15c81
Variable was declared static when it shouldn't be

The local variable tmp was declared static when it shouldn't be. This
is in the no-threads implementation, and it was immediately initialised
to something else on every invokation of the function so it doesn't break
anything...but still shouldn't be there.

Reviewed-by: Kurt Roeckx <kurt@openssl.org>
crypto/init.c