mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
Don't BN_init allocated BIGNUMs, they're already initialized
This commit is contained in:
parent
c5006f4b87
commit
162f00f348
@ -275,7 +275,7 @@ LDAP_END_DECL
|
||||
typedef BIGNUM* ldap_pvt_mp_t;
|
||||
|
||||
#define ldap_pvt_mp_init(mp) \
|
||||
do { (mp) = BN_new(); BN_init((mp)); } while (0)
|
||||
(mp) = BN_new()
|
||||
|
||||
/* FIXME: we rely on mpr being initialized */
|
||||
#define ldap_pvt_mp_init_set(mpr,mpv) \
|
||||
|
Loading…
Reference in New Issue
Block a user