cgen: fix autofree with option array (fix #25124) (#25149)

This commit is contained in:
Felipe Pena 2025-08-23 04:02:38 -03:00 committed by GitHub
parent 83385a8bf8
commit 4e4d4706e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,7 +133,7 @@ fn (mut g Gen) autofree_variable(v ast.Var) {
// eprintln(' > var name: ${v.name:-20s} | is_arg: ${v.is_arg.str():6} | var type: ${int(v.typ):8} | type_name: ${sym.name:-33s}')
}
// }
free_fn := g.styp(v.typ.set_nr_muls(0)) + '_free'
free_fn := g.styp(v.typ.set_nr_muls(0).clear_option_and_result()) + '_free'
if sym.kind == .array {
if sym.has_method('free') {
g.autofree_var_call(free_fn, v)