diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-20 23:15:21 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-23 18:25:23 +0300 |
commit | fa5ebaa20327d0569cd5337a6b5fd22792b00ed1 (patch) | |
tree | fb2aa4946594e0c875427bfaab38c003a04056c7 /src/lexer.l | |
parent | eaa9f2c6dd47c7267c4e7f25565f8cf7f390e114 (diff) | |
download | lyn-fa5ebaa20327d0569cd5337a6b5fd22792b00ed1.tar.gz lyn-fa5ebaa20327d0569cd5337a6b5fd22792b00ed1.zip |
fix memory leaks
+ lol
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; } |