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)
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>

No differences found