Skip to content

Commit c73e35d

Browse files
committed
fix: nullptr dereference in seclang scanner
1 parent e5d00df commit c73e35d

File tree

3 files changed

+783
-774
lines changed

3 files changed

+783
-774
lines changed

src/parser/seclang-parser.hh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
/**
35-
** \file seclang-parser.tab.hh
35+
** \file y.tab.h
3636
** Define the yy::parser class.
3737
*/
3838

@@ -42,8 +42,8 @@
4242
// especially those whose name start with YY_ or yy_. They are
4343
// private implementation details that can be changed or removed.
4444

45-
#ifndef YY_YY_SECLANG_PARSER_TAB_HH_INCLUDED
46-
# define YY_YY_SECLANG_PARSER_TAB_HH_INCLUDED
45+
#ifndef YY_YY_SECLANG_PARSER_HH_INCLUDED
46+
# define YY_YY_SECLANG_PARSER_HH_INCLUDED
4747
// "%code requires" blocks.
4848
#line 10 "seclang-parser.yy"
4949

@@ -8892,4 +8892,4 @@ switch (yykind)
88928892

88938893

88948894

8895-
#endif // !YY_YY_SECLANG_PARSER_TAB_HH_INCLUDED
8895+
#endif // !YY_YY_SECLANG_PARSER_HH_INCLUDED

0 commit comments

Comments
 (0)