[Wireshark-dev] wmem allocator and GLIB version

2012-10-24 Thread Pascal Quantin
Hi all, wmem_glib_free_all() makes use of g_slist_free_full that was introduced in GLIB 2.28 while our minimum requirement is GLIB 2.14.0. Could we manually free list elements containing dynamically-allocated memory and call g_slist_free() instead to keep compatibility with older GLIB versions?

Re: [Wireshark-dev] wmem allocator and GLIB version

2012-10-24 Thread Evan Huus
On Wed, Oct 24, 2012 at 8:08 AM, Pascal Quantin pascal.quan...@gmail.com wrote: Hi all, wmem_glib_free_all() makes use of g_slist_free_full that was introduced in GLIB 2.28 while our minimum requirement is GLIB 2.14.0. Could we manually free list elements containing dynamically-allocated