aboutsummarylogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorarg@10ksloc.org2006-07-20 12:18:06 +0200
committerarg@10ksloc.org2006-07-20 12:18:06 +0200
commit3bf208530f9fcb9552ea5787d2b20b5756a7ac72 (patch)
treec70a08b2e6b3a22346ec559ad604d895886a6dc9 /util.c
parent5f147cb5c10d757831fdc9754a593a4d9f13669a (diff)
downloadaur-3bf208530f9fcb9552ea5787d2b20b5756a7ac72.tar.gz
cleaned up code
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util.c b/util.c
index 1e36b2575e90..94590f9233e3 100644
--- a/util.c
+++ b/util.c
@@ -26,6 +26,7 @@ void *
emallocz(unsigned int size)
{
void *res = calloc(1, size);
+
if(!res)
bad_malloc(size);
return res;
@@ -34,6 +35,7 @@ emallocz(unsigned int size)
void
eprint(const char *errstr, ...) {
va_list ap;
+
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
@@ -44,6 +46,7 @@ void
spawn(Arg *arg)
{
char **argv = (char **)arg->argv;
+
if(!argv || !argv[0])
return;
if(fork() == 0) {