From b54d2dde407921caa7561dde6b45831ba93d0840 Mon Sep 17 00:00:00 2001 From: Hisham Date: Tue, 2 Feb 2016 15:53:02 +0100 Subject: Check for failure in allocations. --- ListItem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ListItem.c') diff --git a/ListItem.c b/ListItem.c index a675327d..c9e906fa 100644 --- a/ListItem.c +++ b/ListItem.c @@ -61,7 +61,7 @@ ObjectClass ListItem_class = { ListItem* ListItem_new(const char* value, int key) { ListItem* this = AllocThis(ListItem); - this->value = strdup(value); + this->value = xStrdup(value); this->key = key; this->moving = false; return this; @@ -71,7 +71,7 @@ void ListItem_append(ListItem* this, const char* text) { int oldLen = strlen(this->value); int textLen = strlen(text); int newLen = strlen(this->value) + textLen; - this->value = realloc(this->value, newLen + 1); + this->value = xRealloc(this->value, newLen + 1); memcpy(this->value + oldLen, text, textLen); this->value[newLen] = '\0'; } -- cgit v1.2.3