9832fd
commit d62aa75af1941fca6f07e107afc447b7b248e340
9832fd
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
9832fd
Date:   Thu Jul 10 14:15:16 2014 +0530
9832fd
9832fd
    Fix crash when system has no ipv6 address [BZ #17125]
9832fd
    
9832fd
    Here's an updated patch to fix the crash in bug-ga2 when the system
9832fd
    has no configured ipv6 address.  I have taken a different approach of
9832fd
    using libc_freeres_fn instead of the libc_freeres_ptr since the former
9832fd
    gives better control over what is freed; we need that since cache may
9832fd
    or may not be allocated using malloc.
9832fd
    
9832fd
    Verified that bug-ga2 works correctly in both cases and does not have
9832fd
    memory leaks in either of them.
9832fd
9832fd
diff --git a/sysdeps/unix/sysv/linux/check_pf.c b/sysdeps/unix/sysv/linux/check_pf.c
9832fd
index 6b28a735a14f1498..757853342d2af5f4 100644
9832fd
--- a/sysdeps/unix/sysv/linux/check_pf.c
9832fd
+++ b/sysdeps/unix/sysv/linux/check_pf.c
9832fd
@@ -62,7 +62,7 @@ static struct cached_data noai6ai_cached =
9832fd
     .in6ailen = 0
9832fd
   };
9832fd
 
9832fd
-libc_freeres_ptr (static struct cached_data *cache);
9832fd
+static struct cached_data *cache;
9832fd
 __libc_lock_define_initialized (static, lock);
9832fd
 
9832fd
 
9832fd
@@ -378,6 +378,12 @@ __check_pf (bool *seen_ipv4, bool *seen_ipv6,
9832fd
   *seen_ipv6 = true;
9832fd
 }
9832fd
 
9832fd
+/* Free the cache if it has been allocated.  */
9832fd
+libc_freeres_fn (freecache)
9832fd
+{
9832fd
+  if (cache)
9832fd
+    __free_in6ai (cache->in6ai);
9832fd
+}
9832fd
 
9832fd
 void
9832fd
 __free_in6ai (struct in6addrinfo *ai)