Skip to content

Commit

Permalink
Add '\' to prohibited chars
Browse files Browse the repository at this point in the history
Should correctly address issue that #112 is trying to fix
  • Loading branch information
mouse07410 committed Dec 26, 2023
1 parent 522ff88 commit 8ba0fb7
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:=,{}<.@()[]'\\\"|&^*;!-] {
if(TYPE_LIFETIME(1994, 0))
fprintf(stderr, "ERROR: ");
fprintf(stderr,
Expand Down

0 comments on commit 8ba0fb7

Please sign in to comment.