Typo: fix duplicate call.

This commit is contained in:
Dr. Stephen Henson 2011-04-10 23:32:19 +00:00
parent 284e2d2b37
commit ac319dd82b

View File

@ -101,7 +101,6 @@ int FIPS_drbg_init(DRBG_CTX *dctx, int type, unsigned int flags)
DRBG_CTX *FIPS_drbg_new(int type, unsigned int flags) DRBG_CTX *FIPS_drbg_new(int type, unsigned int flags)
{ {
int rv;
DRBG_CTX *dctx; DRBG_CTX *dctx;
dctx = OPENSSL_malloc(sizeof(DRBG_CTX)); dctx = OPENSSL_malloc(sizeof(DRBG_CTX));
if (!dctx) if (!dctx)
@ -111,7 +110,6 @@ DRBG_CTX *FIPS_drbg_new(int type, unsigned int flags)
} }
if (type == 0) if (type == 0)
return dctx; return dctx;
rv = FIPS_drbg_init(dctx, type, flags);
if (FIPS_drbg_init(dctx, type, flags) <= 0) if (FIPS_drbg_init(dctx, type, flags) <= 0)
{ {