Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- misc/e2image.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/misc/e2image.c b/misc/e2image.c index 624525b..878149e 100644 --- a/misc/e2image.c +++ b/misc/e2image.c @@ -1309,7 +1309,11 @@ int main (int argc, char ** argv) device_name = argv[optind]; image_fn = argv[optind+1]; - ext2fs_check_if_mounted(device_name, &mount_flags); + retval = ext2fs_check_if_mounted(device_name, &mount_flags); + if (retval) { + com_err(program_name, retval, "checking if mounted"); + exit(1); + } if (img_type && !ignore_rw_mount && (mount_flags & EXT2_MF_MOUNTED) && -- 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