mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-03 09:01:42 -05:00
scanner: Catch more invalid attribute combinations for arg
Spotted by Jakob Bornecrantz.
This commit is contained in:
parent
1ac009473b
commit
d63884b0c7
2 changed files with 13 additions and 5 deletions
|
|
@ -230,19 +230,27 @@ start_element(void *data, const char *element_name, const char **atts)
|
|||
else if (strcmp(type, "fd") == 0)
|
||||
arg->type = FD;
|
||||
else if (strcmp(type, "new_id") == 0) {
|
||||
if (interface_name == NULL)
|
||||
fail(ctx, "no interface name given");
|
||||
arg->type = NEW_ID;
|
||||
arg->interface_name = strdup(interface_name);
|
||||
} else if (strcmp(type, "object") == 0) {
|
||||
if (interface_name == NULL)
|
||||
fail(ctx, "no interface name given");
|
||||
arg->type = OBJECT;
|
||||
arg->interface_name = strdup(interface_name);
|
||||
} else {
|
||||
fail(ctx, "unknown type");
|
||||
}
|
||||
|
||||
switch (arg->type) {
|
||||
case NEW_ID:
|
||||
case OBJECT:
|
||||
if (interface_name == NULL)
|
||||
fail(ctx, "no interface name given");
|
||||
break;
|
||||
default:
|
||||
if (interface_name != NULL)
|
||||
fail(ctx, "interface no allowed");
|
||||
break;
|
||||
}
|
||||
|
||||
wl_list_insert(ctx->message->arg_list.prev, &arg->link);
|
||||
ctx->message->arg_count++;
|
||||
} else if (strcmp(element_name, "enum") == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue