wayland-server: Avoid deferencing a NULL pointer in error case

Reorder the error handling in the case that closure is NULL due to ENOMEM to
ensure that we can safely call wl_closure_lookup_objects on the second test.
Prior to this reordering the closure would be deferenced in the ENOMEM case
due to the invocation of the second half of the logical OR check.
This commit is contained in:
Rob Bradford 2013-03-28 18:48:09 +00:00 committed by Kristian Høgsberg
parent 728b64189b
commit 8680c67c47

View File

@ -260,8 +260,11 @@ wl_client_connection_data(int fd, uint32_t mask, void *data)
&client->objects, message);
len -= size;
if ((closure == NULL && errno == EINVAL) ||
wl_closure_lookup_objects(closure, &client->objects) < 0) {
if (closure == NULL && errno == ENOMEM) {
wl_resource_post_no_memory(resource);
break;
} else if ((closure == NULL && errno == EINVAL) ||
wl_closure_lookup_objects(closure, &client->objects) < 0) {
wl_resource_post_error(client->display_resource,
WL_DISPLAY_ERROR_INVALID_METHOD,
"invalid arguments for %s@%u.%s",
@ -269,9 +272,6 @@ wl_client_connection_data(int fd, uint32_t mask, void *data)
object->id,
message->name);
break;
} else if (closure == NULL && errno == ENOMEM) {
wl_resource_post_no_memory(resource);
break;
}
if (wl_debug)