Make ASN1_TYPE_get() work for V_ASN1_NULL type.
This commit is contained in:
parent
e7b6228fd3
commit
716b2079dc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue