guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. release_1-9-3-36-gb8f


From: Michael Gran
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-3-36-gb8fc11d
Date: Fri, 25 Sep 2009 14:49:16 +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=b8fc11d28731e13a5aa08863dfc36cc79fda4923

The branch, master has been updated
       via  b8fc11d28731e13a5aa08863dfc36cc79fda4923 (commit)
      from  52642040e21d79e788dc818f1e7e763ea502e5eb (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 b8fc11d28731e13a5aa08863dfc36cc79fda4923
Author: Michael Gran <address@hidden>
Date:   Fri Sep 25 07:47:56 2009 -0700

    Missing free in nl-langinfo
    
    This is a regression.
    
    * libguile/i18n.c (scm_nl_langinfo): free c_result

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

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

diff --git a/libguile/i18n.c b/libguile/i18n.c
index b6c84ce..004db8d 100644
--- a/libguile/i18n.c
+++ b/libguile/i18n.c
@@ -1651,6 +1651,7 @@ SCM_DEFINE (scm_nl_langinfo, "nl-langinfo", 1, 1, 0,
              from the c_locale.  */
           result = scm_from_locale_string (c_result);
 #endif /* !HAVE_LANGINFO_CODESET */
+          free (c_result);
        }
     }
 


hooks/post-receive
-- 
GNU Guile




reply via email to

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