Commit a6ac1ed6 authored by FdaSilvaYY's avatar FdaSilvaYY Committed by Rich Salz
Browse files

Fix 0 -> NULL, indentation

parent cbe95241
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -522,7 +522,7 @@ static BIGNUM *asn1_string_to_bn(const ASN1_INTEGER *ai, BIGNUM *bn,
    }

    ret = BN_bin2bn(ai->data, ai->length, bn);
    if (ret == 0) {
    if (ret == NULL) {
        ASN1err(ASN1_F_ASN1_STRING_TO_BN, ASN1_R_BN_LIB);
        return NULL;
    }
+2 −2

File changed.

Contains only whitespace changes.