diff options
author | Matthew Booth <mbooth@redhat.com> | 2012-04-17 10:17:58 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-04-24 10:40:53 +0100 |
commit | c784a55b721d6492fddaa59036dbca185f5604cd (patch) | |
tree | a44720e0be9e5a81aecc2dfc622c430cea84b0f9 | |
parent | b47e619da03a125cd9080d95141a90ce80c50d6c (diff) | |
download | libguestfs-c784a55b721d6492fddaa59036dbca185f5604cd.tar.gz libguestfs-c784a55b721d6492fddaa59036dbca185f5604cd.tar.xz libguestfs-c784a55b721d6492fddaa59036dbca185f5604cd.zip |
Don't abort inspection if mdadm.conf ARRAY doesn't have a uuid
(cherry picked from commit 4542401fee7a141204baea98dcdc9fa557878f85)
-rw-r--r-- | src/inspect_fs_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |