mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Handle config-related allocation failures
This commit is contained in:
parent
248df18c24
commit
d75a747a3d
3 changed files with 134 additions and 58 deletions
|
@ -5,6 +5,9 @@
|
|||
|
||||
list_t *create_list(void) {
|
||||
list_t *list = malloc(sizeof(list_t));
|
||||
if (!list) {
|
||||
return NULL;
|
||||
}
|
||||
list->capacity = 10;
|
||||
list->length = 0;
|
||||
list->items = malloc(sizeof(void*) * list->capacity);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue