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 2013/05/27 16:30:47 UTC

[lucy-commits] [1/2] git commit: refs/heads/master - Pass configure flags to CFC

Updated Branches:
  refs/heads/master 254a1bae9 -> 0c8642094


Pass configure flags to CFC


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/e9ffb333
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/e9ffb333
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/e9ffb333

Branch: refs/heads/master
Commit: e9ffb33386ba970d85a7601bf3bd8da50950002c
Parents: 254a1ba
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon May 27 16:16:19 2013 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon May 27 16:16:19 2013 +0200

----------------------------------------------------------------------
 c/configure |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/e9ffb333/c/configure
----------------------------------------------------------------------
diff --git a/c/configure b/c/configure
index 9206eb4..3f9c0d6 100755
--- a/c/configure
+++ b/c/configure
@@ -16,7 +16,7 @@
 # limitations under the License.
 
 echo Configuring cfc
-(cd ../clownfish/compiler/c && ./configure)
+(cd ../clownfish/compiler/c && ./configure "$@")
 echo
 
 probe_clang() { clang -v; }
@@ -47,5 +47,5 @@ echo $command
 $command || exit
 
 echo Running charmonizer
-./charmonizer --cc=$CC --enable-c --enable-makefile $@
+./charmonizer --cc=$CC --enable-c --enable-makefile "$@"
 


[lucy-commits] [2/2] git commit: refs/heads/master - Fix memory leak introduced in commit cbddfc1

Posted by nw...@apache.org.
Fix memory leak introduced in commit cbddfc1

cbddfc1 Omit header for empty man page sections


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/0c864209
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/0c864209
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/0c864209

Branch: refs/heads/master
Commit: 0c8642094073ecb05b32cf72177ea860d93b8326
Parents: e9ffb33
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon May 27 16:29:27 2013 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon May 27 16:29:27 2013 +0200

----------------------------------------------------------------------
 clownfish/compiler/src/CFCCClass.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/0c864209/clownfish/compiler/src/CFCCClass.c
----------------------------------------------------------------------
diff --git a/clownfish/compiler/src/CFCCClass.c b/clownfish/compiler/src/CFCCClass.c
index 5c276c7..b6def3b 100644
--- a/clownfish/compiler/src/CFCCClass.c
+++ b/clownfish/compiler/src/CFCCClass.c
@@ -146,7 +146,9 @@ CFCCClass_create_man_page(CFCClass *klass) {
         = CFCUtil_sprintf(pattern, class_name, name, synopsis, description,
                           functions_man, methods_man, inheritance);
 
+    FREEMEM(name);
     FREEMEM(synopsis);
+    FREEMEM(description);
     FREEMEM(functions_man);
     FREEMEM(methods_man);
     FREEMEM(inheritance);