summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2016-03-01 11:40:53 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2016-03-01 14:02:43 +0100
commit8173c2ff9af805a1f8eb79fb4bd223622f79ad0d (patch)
treed4ce627241848a18f075b28ad5e21cbf9477c784
parentb2d819eafac630cc683c5fdf02730a636dd9bff6 (diff)
downloadlvm2-8173c2ff9af805a1f8eb79fb4bd223622f79ad0d.tar.gz
coverity: missing error path
-rw-r--r--WHATS_NEW1
-rw-r--r--tools/toollib.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/WHATS_NEW b/WHATS_NEW
index 507e028d4..349445539 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
Version 2.02.145 -
=====================================
+ Fix error path when pvcreate allocation fails (2.02.144).
Display [unknown] instead of blank for unknown VG names in pvs output.
Version 2.02.144 - 26th February 2016
diff --git a/tools/toollib.c b/tools/toollib.c
index dd5ece3ed..dbb6d4024 100644
--- a/tools/toollib.c
+++ b/tools/toollib.c
@@ -4406,6 +4406,7 @@ do_command:
if (!(pvl = dm_pool_alloc(cmd->mem, sizeof(*pvl)))) {
log_error("alloc pvl failed");
dm_list_move(&pp->arg_fail, &pd->list);
+ continue;
}
pv_name = pd->name;