use xmalloc() instead of malloc()

This commit is contained in:
Mike Frysinger 2005-06-11 22:25:27 +00:00
parent 2401ce5343
commit d1a9d57bd6
2 changed files with 2 additions and 6 deletions

View 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) {

View 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) {