From c784a55b721d6492fddaa59036dbca185f5604cd Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Tue, 17 Apr 2012 10:17:58 +0100 Subject: Don't abort inspection if mdadm.conf ARRAY doesn't have a uuid (cherry picked from commit 4542401fee7a141204baea98dcdc9fa557878f85) --- src/inspect_fs_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inspect_fs_unix.c') diff --git a/src/inspect_fs_unix.c b/src/inspect_fs_unix.c index d4641d5d..bd01be7a 100644 --- a/src/inspect_fs_unix.c +++ b/src/inspect_fs_unix.c @@ -1093,7 +1093,7 @@ map_md_devices(guestfs_h *g, Hash_table **map) free(uuid_path); if (!uuid) { free(dev); - goto error; + continue; } /* Parse the uuid into an md_uuid structure so we can look it up in the -- cgit