[PATCH 3/3] clients: Check zalloc return for out of memory situation

Kristian Høgsberg hoegsberg at gmail.com
Tue Apr 29 13:25:14 PDT 2014


On Mon, Apr 28, 2014 at 06:43:43PM +0000, Bryce W. Harrington wrote:
> On Thu, Apr 24, 2014 at 04:26:20PM +0300, Pekka Paalanen wrote:
> > On Mon, 21 Apr 2014 23:51:03 +0000
> > "Bryce W. Harrington" <b.harrington at samsung.com> wrote:
> > >  	terminal = xzalloc(sizeof *terminal);
> > > +	if (terminal == NULL)
> > > +		return NULL;
> > 
> > No need to check 'terminal', xzalloc() will exit() if it ever goes NULL.
> > 
> > I'd be fine with converting all the *allocs to the x*alloc which checks
> > for NULL and exits. All programs using window.h can do that.
> 
> Kristian writes:
> > In the clients we use the x*alloc functions which abort on allocation failure.
> 
> 
> Okay, I'll respin the patch to use the x*alloc functions for terminal.c.
> 
> I notice that other clients are using the regular alloc functions,
> would you be open to a review of these and possibly a patch to convert
> them to x*alloc where appropriate?

Yeah, that'd be fine.

Kristian

> $ grep -I alloc * --exclude window.* | egrep -v "(x.alloc|allocat|zalloc|xrealloc)" | wc -l
> 46
> 
> Bryce


More information about the wayland-devel mailing list