diff --git a/src/ast.c b/src/ast.c
index 2bea5e1ea86d22478fe174d664a4821e62bb88bf..e55ce531be7e9d8c73311132c740574ffaf4cbd5 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -232,10 +232,10 @@ struct mcc_ast_identifier *mcc_ast_new_identifier(char *value)
 	if (!id) {
 		return NULL;
 	}
-	char *str = malloc((strlen(value) + 1) * sizeof(char));
-	strcpy(str, value);
+//	char *str = malloc((strlen(value) + 1) * sizeof(char));
+//	strcpy(str, value);
 
-	id->i_value = str;
+	id->i_value = value;
 	return id;
 }