You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2012/12/16 18:00:22 UTC

[lucy-commits] [3/3] git commit: refs/heads/master - Fix memory leak in S_write_parcel_c

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 <we...@aevum.de>
Authored: Sun Dec 16 17:30:19 2012 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
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);
 }