From 34066d741a7d24bb73931197d72a7264827325f4 Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Mon, 1 Dec 2003 23:13:17 +0000 Subject: [PATCH] Declare the static BIGNUM "BN_value_one()" more carefully. --- crypto/bn/bn_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index b499292884..3ecf83ddf2 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -131,7 +131,7 @@ int BN_get_params(int which) const BIGNUM *BN_value_one(void) { static BN_ULONG data_one=1L; - static BIGNUM const_one={&data_one,1,1,0}; + static BIGNUM const_one={&data_one,1,1,0,BN_FLG_STATIC_DATA}; return(&const_one); } -- 2.34.1