commit 66288673cdce588bf81612c0599047665afefce7 parent a3a1451c5fabb5c94f7fbeb13fdc6b1e2c23181f Author: Quentin Carbonneaux <quentin@c9x.me> Date: Wed, 17 May 2017 11:17:17 -0400 free the typ vector at the end of parse() Diffstat:
M | parse.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/parse.c b/parse.c @@ -1068,6 +1068,7 @@ parse(FILE *f, char *path, void data(Dat *), void func(Fn *)) parsetyp(); break; case Teof: + vfree(typ); return; } }