git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbd1c45
)
virt-alignment-scan: Add checks for when API calls return NULL.
author
Richard W.M. Jones
<rjones@redhat.com>
Thu, 24 Nov 2011 14:06:31 +0000
(14:06 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Thu, 24 Nov 2011 14:06:31 +0000
(14:06 +0000)
In particular, virt-alignment-scan -a /dev/null would segfault
because of an error returned by parted.
align/scan.c
patch
|
blob
|
history
diff --git
a/align/scan.c
b/align/scan.c
index
529add5
..
7b4631a
100644
(file)
--- a/
align/scan.c
+++ b/
align/scan.c
@@
-228,9
+228,13
@@
scan (void)
struct guestfs_partition_list *parts;
devices = guestfs_list_devices (g);
+ if (devices == NULL)
+ exit (EXIT_FAILURE);
for (i = 0; devices[i] != NULL; ++i) {
parts = guestfs_part_list (g, devices[i]);
+ if (parts == NULL)
+ exit (EXIT_FAILURE);
/* Canonicalize the name of the device for printing. */
if (STRPREFIX (devices[i], "/dev/") &&