guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-43-g8ac704


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-43-g8ac7043
Date: Tue, 29 Nov 2011 14:45:45 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=8ac704338d5e548f9dbf6ce3b12ef68a972e099b

The branch, stable-2.0 has been updated
       via  8ac704338d5e548f9dbf6ce3b12ef68a972e099b (commit)
      from  d1c036248c2d50cd7e288bb82f83625813ccecf2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8ac704338d5e548f9dbf6ce3b12ef68a972e099b
Author: Andy Wingo <address@hidden>
Date:   Tue Nov 29 13:43:52 2011 +0100

    fix uninitialized variable in gc.c
    
    * libguile/gc.c (get_image_size): Fix use of uninitialized variable.

-----------------------------------------------------------------------

Summary of changes:
 libguile/gc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libguile/gc.c b/libguile/gc.c
index e36f0a1..cc0904e 100644
--- a/libguile/gc.c
+++ b/libguile/gc.c
@@ -774,7 +774,7 @@ static size_t
 get_image_size (void)
 {
   unsigned long size, resident, share;
-  size_t ret;
+  size_t ret = 0;
 
   FILE *fp = fopen ("/proc/self/statm", "r");
 


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]