From fa5ebaa20327d0569cd5337a6b5fd22792b00ed1 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 20 Oct 2024 23:15:21 +0300 Subject: fix memory leaks + lol --- src/lexer.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lexer.l') 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; } -- cgit v1.2.3