Commit 0f262452 authored by Lev Walkin's avatar Lev Walkin

bit strings also can haz members

parent f7613200
......@@ -1776,7 +1776,8 @@ expr_elements_count(arg_t *arg, asn1p_expr_t *expr) {
if(!(topmost_parent->expr_type & ASN_CONSTR_MASK)
&& !(topmost_parent->expr_type == ASN_BASIC_INTEGER)
&& !(topmost_parent->expr_type == ASN_BASIC_ENUMERATED))
&& !(topmost_parent->expr_type == ASN_BASIC_ENUMERATED)
&& !(topmost_parent->expr_type == ASN_BASIC_BIT_STRING))
return 0;
TQ_FOR(v, &(topmost_parent->members), next) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment