guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, wip-threaded-http-server, updated. v2.


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, wip-threaded-http-server, updated. v2.0.5-36-ga3e4d05
Date: Wed, 08 Feb 2012 11:21:54 +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=a3e4d058668f05bc0416e458cec457963b699b32

The branch, wip-threaded-http-server has been updated
       via  a3e4d058668f05bc0416e458cec457963b699b32 (commit)
      from  804f1f00d750976f0616038f5b55e7da2f8110f3 (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 a3e4d058668f05bc0416e458cec457963b699b32
Author: Andy Wingo <address@hidden>
Date:   Wed Feb 8 12:20:09 2012 +0100

    i18: avoid freelocale (NULL)
    
    * libguile/i18n.c (smob_locale_free): Don't freelocale (NULL).

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

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

diff --git a/libguile/i18n.c b/libguile/i18n.c
index 057711f..817c661 100644
--- a/libguile/i18n.c
+++ b/libguile/i18n.c
@@ -232,7 +232,8 @@ SCM_SMOB_FREE (scm_tc16_locale_smob_type, smob_locale_free, 
locale)
   scm_t_locale c_locale;
 
   c_locale = (scm_t_locale) SCM_SMOB_DATA (locale);
-  freelocale (c_locale);
+  if (c_locale)
+    freelocale (c_locale);
 
   return 0;
 }


hooks/post-receive
-- 
GNU Guile



reply via email to

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