aboutsummaryrefslogtreecommitdiffstats
path: root/mem.c
diff options
context:
space:
mode:
authorFrederic Culot <culot@FreeBSD.org>2019-06-21 10:05:42 +0200
committerGitHub <noreply@github.com>2019-06-21 10:05:42 +0200
commitb0f0b1b4718758dc2960716fa7ecac09ed35a0c1 (patch)
tree1a9884e1687ecb5ead4eba025538edecf98ba5e8 /mem.c
parent2b3b9dc4649727851004b8223b6af38b57c0c790 (diff)
parentaaeb189cb2e7eb6eb95188c707791be71067e802 (diff)
downloadoldrunner-b0f0b1b4718758dc2960716fa7ecac09ed35a0c1.tar.gz
Merge pull request #1 from polettix/patch-1
Remove segfault
Diffstat (limited to 'mem.c')
-rw-r--r--mem.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mem.c b/mem.c
index 1d4c471..6ac6710 100644
--- a/mem.c
+++ b/mem.c
@@ -1,4 +1,6 @@
/* $Id: mem.c,v 1.1.1.1 2010/07/17 17:30:32 culot Exp $ */
+/* vim: et ai sts=2 ts=2 sw=2:
+ * */
/*
* Copyright (c) 2010 Frederic Culot <frederic@culot.org>
@@ -40,7 +42,7 @@ void *
xmalloc (size_t size)
{
void *p;
-
+
EXIT_IF (size == 0, "xmalloc: zero size");
p = malloc (size);
EXIT_IF (p == 0, "xmalloc: out of memory");
Un proyecto texto-plano.xyz