You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
glib 2.76 converts the slice allocator implementation to a g_malloc wrapper, which has been under discussion since 2015. Consider switching to g_malloc everywhere to simplify our internals, e.g. eliminating _openslide_slice.
g_malloc is also a malloc wrapper since glib 2.46, but it provides some useful API affordances (e.g. automatic abort on allocation failure) so I'd be inclined to keep using it.
The text was updated successfully, but these errors were encountered:
Slide format
All
Issue details
glib 2.76 converts the slice allocator implementation to a
g_malloc
wrapper, which has been under discussion since 2015. Consider switching tog_malloc
everywhere to simplify our internals, e.g. eliminating_openslide_slice
.g_malloc
is also amalloc
wrapper since glib 2.46, but it provides some useful API affordances (e.g. automatic abort on allocation failure) so I'd be inclined to keep using it.The text was updated successfully, but these errors were encountered: