2007-04-27 11:58:48 -06:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
|
|
*
|
2008-01-11 09:06:44 -07:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
2012-11-28 07:32:44 -07:00
|
|
|
* $OpenBSD: xmalloc.c,v 1.11 2012/11/28 14:32:44 okan Exp $
|
2007-04-27 11:58:48 -06:00
|
|
|
*/
|
|
|
|
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2012-11-16 07:15:48 -07:00
|
|
|
#include <stdint.h>
|
2012-11-08 20:52:02 -07:00
|
|
|
#include <stdio.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
|
|
|
void *
|
|
|
|
xmalloc(size_t siz)
|
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
void *p;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2012-11-16 07:15:48 -07:00
|
|
|
if (siz == 0)
|
|
|
|
errx(1, "xmalloc: zero size");
|
2007-04-27 11:58:48 -06:00
|
|
|
if ((p = malloc(siz)) == NULL)
|
|
|
|
err(1, "malloc");
|
|
|
|
|
|
|
|
return (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2008-04-16 07:38:09 -06:00
|
|
|
xcalloc(size_t no, size_t siz)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
void *p;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2012-11-16 07:15:48 -07:00
|
|
|
if (siz == 0 || no == 0)
|
|
|
|
errx(1, "xcalloc: zero size");
|
|
|
|
if (SIZE_MAX / no < siz)
|
|
|
|
errx(1, "xcalloc: no * siz > SIZE_MAX");
|
2008-04-16 07:38:09 -06:00
|
|
|
if ((p = calloc(no, siz)) == NULL)
|
2007-04-27 11:58:48 -06:00
|
|
|
err(1, "calloc");
|
|
|
|
|
|
|
|
return (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
xstrdup(const char *str)
|
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
char *p;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
if ((p = strdup(str)) == NULL)
|
|
|
|
err(1, "strdup");
|
|
|
|
|
|
|
|
return (p);
|
|
|
|
}
|
2012-11-28 07:32:44 -07:00
|
|
|
|
|
|
|
int
|
|
|
|
xasprintf(char **ret, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
i = vasprintf(ret, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (i < 0 || *ret == NULL)
|
|
|
|
err(1, "asprintf");
|
|
|
|
|
|
|
|
return (i);
|
|
|
|
}
|