From ccf529928f0d032d8a83b54c0f7c546e59669811 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Fri, 26 Dec 2008 15:32:59 +0000 Subject: [PATCH] !a && !a->b is clearly wrong! Changed to !a || !a->b (Coverity ID 145). --- crypto/asn1/bio_ndef.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/bio_ndef.c b/crypto/asn1/bio_ndef.c index 96074802d3..370389b1e6 100644 --- a/crypto/asn1/bio_ndef.c +++ b/crypto/asn1/bio_ndef.c @@ -108,7 +108,7 @@ BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it) const ASN1_AUX *aux = it->funcs; ASN1_STREAM_ARG sarg; - if (!aux && !aux->asn1_cb) + if (!aux || !aux->asn1_cb) { ASN1err(ASN1_F_BIO_NEW_NDEF, ASN1_R_STREAMING_NOT_SUPPORTED); return NULL; -- 2.34.1