diff options
author | midipix <writeonce@midipix.org> | 2016-04-16 20:53:08 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-17 02:51:57 -0400 |
commit | 0913c3d46b180e40867e7de6a062582acd1902e9 (patch) | |
tree | af3169150d257fabb06d7073a9a7b1c0e038580c /src/logic/slbt_exec_ctx.c | |
parent | dcb4535da0c4e22eafb51a20128c436e3337f8b7 (diff) | |
download | slibtool-0913c3d46b180e40867e7de6a062582acd1902e9.tar.bz2 slibtool-0913c3d46b180e40867e7de6a062582acd1902e9.tar.xz |
link mode: .deps file generation: initial implementation.
Diffstat (limited to 'src/logic/slbt_exec_ctx.c')
-rw-r--r-- | src/logic/slbt_exec_ctx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/logic/slbt_exec_ctx.c b/src/logic/slbt_exec_ctx.c index 39fa26c..37bb475 100644 --- a/src/logic/slbt_exec_ctx.c +++ b/src/logic/slbt_exec_ctx.c @@ -329,6 +329,9 @@ static int slbt_free_exec_ctx_impl( if (ictx->ctx.fwrapper) fclose(ictx->ctx.fwrapper); + if (ictx->ctx.fdeps) + fclose(ictx->ctx.fdeps); + free(ictx->args); free(ictx->shadow); free (ictx); |