diff options
Diffstat (limited to 'src/lexer.l')
-rw-r--r-- | src/lexer.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lexer.l b/src/lexer.l index 4756cf0..7b30454 100644 --- a/src/lexer.l +++ b/src/lexer.l @@ -56,7 +56,7 @@ FLOAT {HEXF}|{DECF} {STRING} { /* seems risky, I know, but letting the parser choose when to allocate a * new string seems to help with syntax error cleanup */ - yylval->str = strdup(yytext); + yylval->str = yytext; return STRING; } @@ -71,7 +71,7 @@ FLOAT {HEXF}|{DECF} } {ID} { - yylval->str = strdup(yytext); + yylval->str = yytext; return ID; } |