Skip to content
Snippets Groups Projects
Commit 162f00f3 authored by Howard Chu's avatar Howard Chu
Browse files

Don't BN_init allocated BIGNUMs, they're already initialized

parent c5006f4b
No related branches found
No related tags found
No related merge requests found
......@@ -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) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment