[crypto/asn1/x_bignum.c] Explicit test against NULL
authorCesar Pereida Garcia <cesar.pereidagarcia@tut.fi>
Thu, 12 Sep 2019 13:58:50 +0000 (16:58 +0300)
committerNicola Tuveri <nic.tuv@gmail.com>
Wed, 16 Oct 2019 12:41:17 +0000 (15:41 +0300)
commitbf585d60fc4de00724a099faa66229ddafbebe00
treeedb865c52fa8ca9b6d7e5287c9cd269ee59bd180
parent7bcd13cebd9ebc6cf6026fff999beb34504a8068
[crypto/asn1/x_bignum.c] Explicit test against NULL

As a fixup to https://github.com/openssl/openssl/pull/9779 to better
conform to the project code style guidelines, this commit amends the
original changeset to explicitly test against NULL, i.e. writing

```
if (p != NULL)
```

rather than

```
if (!p)
```

Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9881)
crypto/asn1/x_bignum.c