use xmalloc() instead of malloc()
authorMike Frysinger <vapier@gentoo.org>
Sat, 11 Jun 2005 22:25:27 +0000 (22:25 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sat, 11 Jun 2005 22:25:27 +0000 (22:25 -0000)
e2fsprogs/e2p/feature.c
e2fsprogs/e2p/mntopts.c

index f4e920a9831b857d82e7ed1365bf7fccf4cb4773..a4f3c64cb5790f63c8b23556c6198230795f15bb 100644 (file)
@@ -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) {
index 6d0eca0ae6858256f11153a3b834c6597942f27e..735260ce00e358beb717e0d9e0e78810a30a3abb 100644 (file)
@@ -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) {