Commit ccf52992 authored by Ben Laurie's avatar Ben Laurie
Browse files

!a && !a->b is clearly wrong! Changed to !a || !a->b (Coverity ID 145).

parent 5ceb595d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;