From 7bd975ec69c8dc9d5a6343a2e5f06bd7dd78d78e Mon Sep 17 00:00:00 2001 From: A404M Date: Wed, 26 Mar 2025 00:17:31 +0330 Subject: fix null double free --- src/compiler/ast-tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler/ast-tree.h') diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index dd845a2..33cf9da 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -257,7 +257,7 @@ bool setTypesOperatorInfix(AstTree *tree, AstTreeSetTypesHelper helper); bool setTypesOperatorInfixWithRet(AstTree *tree, AstTree *retType, AstTreeSetTypesHelper helper); bool setTypesOperatorUnary(AstTree *tree, AstTreeSetTypesHelper helper); -bool setTypesOperatorIndirection(AstTree *tree, AstTreeSetTypesHelper helper); +bool setTypesOperatorPointer(AstTree *tree, AstTreeSetTypesHelper helper); bool setTypesVariableDefine(AstTree *tree, AstTreeSetTypesHelper helper); bool setTypesIf(AstTree *tree, AstTreeSetTypesHelper helper, AstTreeFunction *function); -- cgit v1.2.3