Only use g_memdup2 for glib >= 2.68

This commit is contained in:
Michael Swiger 2021-08-29 13:11:04 -07:00
parent cb49650ea4
commit 4f76c9bd43
1 changed files with 4 additions and 0 deletions

View File

@ -287,7 +287,11 @@ Glib::RefPtr<Gdk::Pixbuf> Item::extractPixBuf(GVariant* variant) {
if (array != nullptr) {
g_free(array);
}
#if GLIB_MAJOR_VERSION >= 2 && GLIB_MINOR_VERSION >= 68
array = static_cast<guchar*>(g_memdup2(data, size));
#else
array = static_cast<guchar*>(g_memdup(data, size));
#endif
lwidth = width;
lheight = height;
}