Lawrence Livermore National Labs recently ran the source code analysis tool Coverity over the e2fsprogs-1.39 source to see if it would identify any significant bugs. The analysis turned up 38 mostly minor issues which are enumerated here with patches. We went through and resolved these issues but would love to see these mostly minor changes reviewed and commited upstream. Thanks, Brian Behlendorf <behlendorf1@xxxxxxxx>, and Herb Wartens <wartens2@xxxxxxxx> ----------------------------------------------------------------------------- Coverity ID: 23: Resource Leak Use pre-existing early exit label in function to handle proper error code return and local memory allocation cleanup. Index: e2fsprogs+chaos/lib/ext2fs/imager.c =================================================================== --- e2fsprogs+chaos.orig/lib/ext2fs/imager.c +++ e2fsprogs+chaos/lib/ext2fs/imager.c @@ -72,8 +72,10 @@ errcode_t ext2fs_image_inode_write(ext2_ for (group = 0; group < fs->group_desc_count; group++) { blk = fs->group_desc[(unsigned)group].bg_inode_table; - if (!blk) - return EXT2_ET_MISSING_INODE_TABLE; + if (!blk) { + retval = EXT2_ET_MISSING_INODE_TABLE; + goto errout; + } left = fs->inode_blocks_per_group; while (left) { c = BUF_BLOCKS; - To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html