mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-02-24 01:40:35 -05:00
Do not allow nullable new_id
The usefulness of this is limited, and `libwayland-client` doesn't provide a way to pass a null `new_id` since the id is generated by the library and given to the caller as the return value. Signed-off-by: Ian Douglas Scott <idscott@system76.com>
This commit is contained in:
parent
13b05c9ed1
commit
971f8e4ace
4 changed files with 4 additions and 8 deletions
|
|
@ -630,7 +630,7 @@ wl_closure_marshal(struct wl_object *sender, uint32_t opcode,
|
|||
break;
|
||||
case 'n':
|
||||
object = args[i].o;
|
||||
if (!arg.nullable && object == NULL)
|
||||
if (object == NULL)
|
||||
goto err_null;
|
||||
|
||||
closure->args[i].n = object ? object->id : 0;
|
||||
|
|
@ -799,7 +799,7 @@ wl_connection_demarshal(struct wl_connection *connection,
|
|||
id = *p++;
|
||||
closure->args[i].n = id;
|
||||
|
||||
if (id == 0 && !arg.nullable) {
|
||||
if (id == 0) {
|
||||
wl_log("NULL new ID received on non-nullable "
|
||||
"type, message %s(%s)\n", message->name,
|
||||
message->signature);
|
||||
|
|
|
|||
|
|
@ -414,7 +414,6 @@ is_nullable_type(struct arg *arg)
|
|||
/* Strings and objects are possibly nullable */
|
||||
case STRING:
|
||||
case OBJECT:
|
||||
case NEW_ID:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue