]> Nishi Git Mirror - gwion.git/commitdiff
:bomb: Remove tuple leak
authorfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 15 Oct 2019 01:41:45 +0000 (03:41 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 15 Oct 2019 01:41:45 +0000 (03:41 +0200)
src/lib/tuple.c

index 1844ec6990c384dbe31a8342655f4dbbaa61f9a9..fe363b2ec3440eed6e66fa8535e990f2a321e30f 100644 (file)
@@ -313,7 +313,7 @@ ANN Type tuple_type(const Env env, const Vector v, const loc_t pos) {
   Section * section = new_section_stmt_list(env->gwion->mp, base);
   Class_Body body = new_class_body(env->gwion->mp, section, NULL);
   const ID_List ilist = new_id_list(env->gwion->mp, insert_symbol(env->gwion->type[et_tuple]->name),
-      loc_cpy(env->gwion->mp, loc_cpy(env->gwion->mp, pos)));
+      loc_cpy(env->gwion->mp, pos));
   Type_Decl *td = new_type_decl(env->gwion->mp, ilist);
   Class_Def cdef = new_class_def(env->gwion->mp, ae_flag_template,
         sym, td, body, loc_cpy(env->gwion->mp, pos));