summaryrefslogtreecommitdiff
path: root/misc/mke2fs.c
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2013-12-12 13:06:44 -0500
committerTheodore Ts'o <tytso@mit.edu>2013-12-12 13:06:46 -0500
commit80a1806d617fdb14421ac6ac50a640ac1fd303b3 (patch)
treea695a28627d0975e42d0ee27bb37eae9a08f3f34 /misc/mke2fs.c
parente39082e2e81641eb8021eb6ddc969731537c79a8 (diff)
downloade2fsprogs-80a1806d617fdb14421ac6ac50a640ac1fd303b3.tar.gz
mke2fs: don't leak memory (on error path)
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'misc/mke2fs.c')
-rw-r--r--misc/mke2fs.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/misc/mke2fs.c b/misc/mke2fs.c
index 80414464..74df4343 100644
--- a/misc/mke2fs.c
+++ b/misc/mke2fs.c
@@ -93,7 +93,7 @@ gid_t root_gid;
int journal_size;
int journal_flags;
int lazy_itable_init;
-char *bad_blocks_filename;
+char *bad_blocks_filename = NULL;
__u32 fs_stride;
int quotatype = -1; /* Initialize both user and group quotas by default */
@@ -1099,6 +1099,7 @@ static char **parse_fs_type(const char *fs_type,
parse_str = malloc(strlen(usage_types)+1);
if (!parse_str) {
+ free(profile_type);
free(list.list);
return 0;
}
@@ -1469,7 +1470,8 @@ profile_error:
discard = 0;
break;
case 'l':
- bad_blocks_filename = malloc(strlen(optarg)+1);
+ bad_blocks_filename = realloc(bad_blocks_filename,
+ strlen(optarg) + 1);
if (!bad_blocks_filename) {
com_err(program_name, ENOMEM,
_("in malloc for bad_blocks_filename"));
@@ -2184,8 +2186,11 @@ static int mke2fs_setup_tdb(const char *name, io_manager *io_ptr)
}
if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
- access(tdb_dir, W_OK))
+ access(tdb_dir, W_OK)) {
+ if (free_tdb_dir)
+ free(tdb_dir);
return 0;
+ }
tmp_name = strdup(name);
if (!tmp_name)