Make ASN1_TYPE_get() work for V_ASN1_NULL type.

This commit is contained in:
Dr. Stephen Henson 2002-12-04 00:49:46 +00:00
parent e7b6228fd3
commit 716b2079dc

View file

@ -62,7 +62,7 @@
int ASN1_TYPE_get(ASN1_TYPE *a)
{
if (a->value.ptr != NULL)
if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
return(a->type);
else
return(0);