mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 20:06:18 +01:00
Merge branch 'wip/smcv/gvariant-memcpy0' into 'master'
gvariant-core: Don't pass NULL second argument to memcpy See merge request GNOME/glib!1303
This commit is contained in:
commit
a7880d84d0
@ -554,7 +554,8 @@ g_variant_new_from_bytes (const GVariantType *type,
|
|||||||
aligned_size) != 0)
|
aligned_size) != 0)
|
||||||
g_error ("posix_memalign failed");
|
g_error ("posix_memalign failed");
|
||||||
|
|
||||||
memcpy (aligned_data, g_bytes_get_data (bytes, NULL), aligned_size);
|
if (aligned_size != 0)
|
||||||
|
memcpy (aligned_data, g_bytes_get_data (bytes, NULL), aligned_size);
|
||||||
|
|
||||||
bytes = owned_bytes = g_bytes_new_with_free_func (aligned_data,
|
bytes = owned_bytes = g_bytes_new_with_free_func (aligned_data,
|
||||||
aligned_size,
|
aligned_size,
|
||||||
|
Loading…
Reference in New Issue
Block a user