Browse Source

remove memory leak in function parser (bug. no 478),

second case
pre-master-46
Holger Vogt 6 years ago
parent
commit
4a3b193154
  1. 1
      src/frontend/parse.c

1
src/frontend/parse.c

@ -307,6 +307,7 @@ struct pnode *PP_mkfnode(const char *func, struct pnode *arg)
/* Give the user-defined functions a try. */
q = ft_substdef(func, arg);
if (q) { /* found */
free_pnode(arg);
return q;
}
}

Loading…
Cancel
Save