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. --- Panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Panel.c') diff --git a/Panel.c b/Panel.c index 16abc248..dd94ceae 100644 --- a/Panel.c +++ b/Panel.c @@ -97,7 +97,7 @@ PanelClass Panel_class = { Panel* Panel_new(int x, int y, int w, int h, bool owner, ObjectClass* type, FunctionBar* fuBar) { Panel* this; - this = malloc(sizeof(Panel)); + this = xMalloc(sizeof(Panel)); Object_setClass(this, Class(Panel)); Panel_init(this, x, y, w, h, type, owner, fuBar); return this; @@ -455,7 +455,7 @@ bool Panel_onKey(Panel* this, int key) { HandlerResult Panel_selectByTyping(Panel* this, int ch) { int size = Panel_size(this); if (!this->eventHandlerState) - this->eventHandlerState = calloc(100, sizeof(char)); + this->eventHandlerState = xCalloc(100, sizeof(char)); char* buffer = this->eventHandlerState; if (ch < 255 && isalnum(ch)) { -- cgit v1.2.3