wayland-util: return -1 if wl_array_copy() fails

We might have to perform memory allocations in wl_array_copy(), so catch
out-of-memory errors in wl_array_add() and return -1 before changing any
state.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-10-11 23:37:43 +02:00 committed by Kristian Høgsberg
parent 66e4aa98cf
commit 0d5850e6d6
2 changed files with 10 additions and 4 deletions

View file

@ -132,12 +132,18 @@ wl_array_add(struct wl_array *array, size_t size)
return p;
}
WL_EXPORT void
WL_EXPORT int
wl_array_copy(struct wl_array *array, struct wl_array *source)
{
array->size = 0;
wl_array_add(array, source->size);
if (array->size < source->size) {
if (!wl_array_add(array, source->size - array->size))
return -1;
} else {
array->size = source->size;
}
memcpy(array->data, source->data, source->size);
return 0;
}
union map_entry {