aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-06-11 22:25:27 +0000
committerMike Frysinger <vapier@gentoo.org>2005-06-11 22:25:27 +0000
commitd1a9d57bd6d9e40fb25564f10b0bd85f0a2c1e3a (patch)
treec0ec65f798747749494ca08700b58323b6109025 /e2fsprogs
parent2401ce5343f5e553ff06fc2e621a316ee485dd39 (diff)
downloadbusybox-d1a9d57bd6d9e40fb25564f10b0bd85f0a2c1e3a.tar.gz
use xmalloc() instead of malloc()
Diffstat (limited to 'e2fsprogs')
-rw-r--r--e2fsprogs/e2p/feature.c4
-rw-r--r--e2fsprogs/e2p/mntopts.c4
2 files changed, 2 insertions, 6 deletions
diff --git a/e2fsprogs/e2p/feature.c b/e2fsprogs/e2p/feature.c
index f4e920a98..a4f3c64cb 100644
--- a/e2fsprogs/e2p/feature.c
+++ b/e2fsprogs/e2p/feature.c
@@ -154,9 +154,7 @@ int e2p_edit_feature(const char *str, __u32 *compat_array, __u32 *ok_array)
unsigned int mask;
int compat_type;
- buf = malloc(strlen(str)+1);
- if (!buf)
- return 1;
+ buf = xmalloc(strlen(str)+1);
strcpy(buf, str);
cp = buf;
while (cp && *cp) {
diff --git a/e2fsprogs/e2p/mntopts.c b/e2fsprogs/e2p/mntopts.c
index 6d0eca0ae..735260ce0 100644
--- a/e2fsprogs/e2p/mntopts.c
+++ b/e2fsprogs/e2p/mntopts.c
@@ -99,9 +99,7 @@ int e2p_edit_mntopts(const char *str, __u32 *mntopts, __u32 ok)
int neg;
unsigned int mask;
- buf = malloc(strlen(str)+1);
- if (!buf)
- return 1;
+ buf = xmalloc(strlen(str)+1);
strcpy(buf, str);
cp = buf;
while (cp && *cp) {