xdg-toplevel: post no memory on strdup() fail

This commit is contained in:
Kirill Primak 2022-06-21 17:34:25 +03:00
parent ec8b49c93f
commit 8d2fa15e9d
1 changed files with 2 additions and 0 deletions

View File

@ -157,6 +157,7 @@ static void xdg_toplevel_handle_set_title(struct wl_client *client,
tmp = strdup(title);
if (tmp == NULL) {
wl_resource_post_no_memory(resource);
return;
}
@ -173,6 +174,7 @@ static void xdg_toplevel_handle_set_app_id(struct wl_client *client,
tmp = strdup(app_id);
if (tmp == NULL) {
wl_resource_post_no_memory(resource);
return;
}