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:
parent
728b64189b
commit
8680c67c47
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user