Make ASN1_TYPE_get() work for V_ASN1_NULL type.

This commit is contained in:
Dr. Stephen Henson 2002-12-04 00:50:20 +00:00
parent e758ce69a3
commit a6ee8fe26a

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);