Addresses-Coverity-ID: #1147783 Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> --- misc/e2image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/e2image.c b/misc/e2image.c index ab6a4fa..253fad1 100644 --- a/misc/e2image.c +++ b/misc/e2image.c @@ -174,7 +174,7 @@ static void generic_write(int fd, void *buf, int blocksize, blk64_t block) printf(_("Writing block %llu\n"), (unsigned long long) block); if (fd != 1) seek_relative(fd, blocksize); - return; + goto free_and_return; } count = write(fd, buf, blocksize); if (count != blocksize) { @@ -191,6 +191,7 @@ static void generic_write(int fd, void *buf, int blocksize, blk64_t block) exit(1); } +free_and_return: if (free_buf) ext2fs_free_mem(&buf); } -- 1.8.5.rc3.362.gdf10213 -- 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