diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2020-01-02 21:35:28 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2020-01-02 21:35:28 +0000 |
commit | e3b19d5ca659af9027c22f47f0b6a1ae0888f8fc (patch) | |
tree | 17ba125a07a8eb169a3a880a293470154e141e8d /crypto/openssl/crypto/asn1 | |
parent | 306b1ad2330ed69f4c4913e3bd01d9d5c7af2810 (diff) | |
download | src-e3b19d5ca659af9027c22f47f0b6a1ae0888f8fc.tar.gz src-e3b19d5ca659af9027c22f47f0b6a1ae0888f8fc.zip |
Merge OpenSSL 1.0.2u.
Notes
Notes:
svn path=/stable/11/; revision=356290
Diffstat (limited to 'crypto/openssl/crypto/asn1')
-rw-r--r-- | crypto/openssl/crypto/asn1/x_bignum.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/openssl/crypto/asn1/x_bignum.c b/crypto/openssl/crypto/asn1/x_bignum.c index c644199c9f81..71b733bf477a 100644 --- a/crypto/openssl/crypto/asn1/x_bignum.c +++ b/crypto/openssl/crypto/asn1/x_bignum.c @@ -4,7 +4,7 @@ * 2000. */ /* ==================================================================== - * Copyright (c) 2000 The OpenSSL Project. All rights reserved. + * Copyright (c) 2000-2019 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -102,7 +102,7 @@ ASN1_ITEM_end(CBIGNUM) static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) { *pval = (ASN1_VALUE *)BN_new(); - if (*pval) + if (*pval != NULL) return 1; else return 0; @@ -110,7 +110,7 @@ static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) { - if (!*pval) + if (*pval == NULL) return; if (it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval); @@ -124,7 +124,7 @@ static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, { BIGNUM *bn; int pad; - if (!*pval) + if (*pval == NULL) return -1; bn = (BIGNUM *)*pval; /* If MSB set in an octet we need a padding byte */ |