Fix memory leak in S_write_parcel_c
Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/3c271604 Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/3c271604 Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/3c271604 Branch: refs/heads/master Commit: 3c271604957fadc6936faafd4335207c0ddf5c4b Parents: b2f9eb4 Author: Nick Wellnhofer <[email protected]> Authored: Sun Dec 16 17:30:19 2012 +0100 Committer: Nick Wellnhofer <[email protected]> Committed: Sun Dec 16 17:30:19 2012 +0100 ---------------------------------------------------------------------- clownfish/compiler/src/CFCBindCore.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/3c271604/clownfish/compiler/src/CFCBindCore.c ---------------------------------------------------------------------- diff --git a/clownfish/compiler/src/CFCBindCore.c b/clownfish/compiler/src/CFCBindCore.c index 998dada..b79a5bd 100644 --- a/clownfish/compiler/src/CFCBindCore.c +++ b/clownfish/compiler/src/CFCBindCore.c @@ -434,5 +434,6 @@ S_write_parcel_c(CFCBindCore *self) { FREEMEM(includes); FREEMEM(c_data); FREEMEM(vt_specs); + FREEMEM(file_content); }
