2014-07-10 Siddhesh Poyarekar <siddhesh@redhat.com>
+ [BZ #17125]
+ * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
+ libc_freeres_ptr.
+ (freecache): New function to free CACHE on exit.
+
* sunrpc/xdr.c (xdr_string): Add comment about SIZE
initialization.
16882, 16885, 16888, 16890, 16912, 16915, 16916, 16917, 16918, 16922,
16927, 16928, 16932, 16943, 16958, 16965, 16966, 16967, 16977, 16978,
16984, 16990, 16996, 17009, 17022, 17031, 17042, 17048, 17050, 17058,
- 17061, 17062, 17069, 17075, 17079, 17084, 17086, 17092, 17097.
+ 17061, 17062, 17069, 17075, 17079, 17084, 17086, 17092, 17097, 17125.
* Optimized strchr implementation for AArch64. Contributed by ARM Ltd.
.in6ailen = 0
};
-libc_freeres_ptr (static struct cached_data *cache);
+static struct cached_data *cache;
__libc_lock_define_initialized (static, lock);
*seen_ipv6 = true;
}
+/* Free the cache if it has been allocated. */
+libc_freeres_fn (freecache)
+{
+ if (cache)
+ __free_in6ai (cache->in6ai);
+}
void
__free_in6ai (struct in6addrinfo *ai)