Handle config-related allocation failures

This commit is contained in:
Drew DeVault 2016-12-15 17:52:53 -05:00
parent 248df18c24
commit d75a747a3d
3 changed files with 134 additions and 58 deletions

View file

@ -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);