mirror of
https://github.com/swaywm/sway.git
synced 2026-03-04 01:41:11 -05:00
Add remaining sway allocation failure handling
This commit is contained in:
parent
7784f1a905
commit
a2b9149656
2 changed files with 10 additions and 2 deletions
|
|
@ -121,6 +121,10 @@ char *workspace_next_name(const char *output_name) {
|
|||
l = 3;
|
||||
}
|
||||
char *name = malloc(l + 1);
|
||||
if (!name) {
|
||||
sway_log(L_ERROR, "Could not allocate workspace name");
|
||||
return NULL;
|
||||
}
|
||||
sprintf(name, "%d", ws_num++);
|
||||
return name;
|
||||
}
|
||||
|
|
@ -278,7 +282,11 @@ bool workspace_switch(swayc_t *workspace) {
|
|||
|| (strcmp(prev_workspace_name, active_ws->name)
|
||||
&& active_ws != workspace)) {
|
||||
free(prev_workspace_name);
|
||||
prev_workspace_name = malloc(strlen(active_ws->name)+1);
|
||||
prev_workspace_name = malloc(strlen(active_ws->name) + 1);
|
||||
if (!prev_workspace_name) {
|
||||
sway_log(L_ERROR, "Unable to allocate previous workspace name");
|
||||
return false;
|
||||
}
|
||||
strcpy(prev_workspace_name, active_ws->name);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue