Only accept exact match for modifier or tag name
This commit is contained in:
parent
c99935e32c
commit
7fb8d254fe
@ -600,7 +600,7 @@ static int asn1_str2tag(const char *tagstr, int len)
|
||||
tntmp = tnst;
|
||||
for (i = 0; i < sizeof(tnst) / sizeof(struct tag_name_st); i++, tntmp++)
|
||||
{
|
||||
if (!strncmp(tntmp->strnam, tagstr, tntmp->len))
|
||||
if ((len == tntmp->len) && !strncmp(tntmp->strnam, tagstr, len))
|
||||
return tntmp->tag;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user