summaryrefslogtreecommitdiffstats
path: root/text-utils/rev.c
diff options
context:
space:
mode:
authorDavidlohr Bueso2010-10-22 17:26:24 +0200
committerKarel Zak2010-11-01 15:17:11 +0100
commit3924d0f169525270e20b6183ee67bca5822d0291 (patch)
tree12b93bc7852c80badc5ef72419f83e3a02b54395 /text-utils/rev.c
parentul: use xalloc for memory allocation (diff)
downloadkernel-qcow2-util-linux-3924d0f169525270e20b6183ee67bca5822d0291.tar.gz
kernel-qcow2-util-linux-3924d0f169525270e20b6183ee67bca5822d0291.tar.xz
kernel-qcow2-util-linux-3924d0f169525270e20b6183ee67bca5822d0291.zip
rev: use xalloc for memory allocation
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Diffstat (limited to 'text-utils/rev.c')
-rw-r--r--text-utils/rev.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/text-utils/rev.c b/text-utils/rev.c
index 7a42d7e49..b69244971 100644
--- a/text-utils/rev.c
+++ b/text-utils/rev.c
@@ -59,6 +59,7 @@
#include <signal.h>
#include "nls.h"
+#include "xalloc.h"
#include "widechar.h"
wchar_t *buf;
@@ -117,9 +118,7 @@ int main(int argc, char *argv[])
filename = *argv++;
}
- buf = malloc(bufsiz * sizeof(wchar_t));
- if (!buf)
- err(EXIT_FAILURE, _("malloc failed"));
+ buf = xmalloc(bufsiz * sizeof(wchar_t));
while (fgetws(buf, bufsiz, fp)) {
len = wcslen(buf);