Skip to content

Commit

Permalink
fix missing escape for ] and \
Browse files Browse the repository at this point in the history
  • Loading branch information
attina committed Dec 26, 2023
1 parent a4e82f9 commit 5563983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libasn1parser/asn1p_l.l
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ DESCENDANTS return TOK_DESCENDANTS;

[(){},;:|!.&@\[\]^] return yytext[0];

[^A-Za-z0-9:=,{}<.@()[]'\"|&^*;!-] {
[^A-Za-z0-9:=,{}<.@()[\]'\\"|&^*;!-] {

This comment has been minimized.

Copy link
@mouse07410

mouse07410 Dec 26, 2023

This does not seem right: you stop escaping ", and instead escape ] and \.

What gives?

if(TYPE_LIFETIME(1994, 0))
fprintf(stderr, "ERROR: ");
fprintf(stderr,
Expand Down

0 comments on commit 5563983

Please sign in to comment.