crypto/bn/asm/s390x.S: drop redundant instructions.
[openssl.git] / crypto / bn / bn_recp.c
index 10fe869d28e204f019795e74ae53165adcd534e4..2e8efb8dae29ac2f5473299ae2bcb9e4752c1f5c 100644 (file)
@@ -204,8 +204,8 @@ int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
        ret=1;
 err:
        BN_CTX_end(ctx);
-       if(dv) bn_check_top(dv);
-       if(rem) bn_check_top(rem);
+       bn_check_top(dv);
+       bn_check_top(rem);
        return(ret);
        }