[lvm-devel] [PATCH 05/30] Print vg_name and do not to access vg->name

Zdenek Kabelac zkabelac at redhat.com
Mon Oct 25 08:24:12 UTC 2010


clang Logic error Dereference of null pointer
Replacing pointer access with vg_name.

Signed-off-by: Zdenek Kabelac <zkabelac at redhat.com>
---
 tools/pvresize.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/pvresize.c b/tools/pvresize.c
index ccd025a..af499e5 100644
--- a/tools/pvresize.c
+++ b/tools/pvresize.c
@@ -148,7 +148,7 @@ static int _pv_resize_single(struct cmd_context *cmd,
 	if (!is_orphan_vg(vg_name)) {
 		if (!vg_write(vg) || !vg_commit(vg)) {
 			log_error("Failed to store physical volume \"%s\" in "
-				  "volume group \"%s\"", pv_name, vg->name);
+				  "volume group \"%s\"", pv_name, vg_name);
 			goto out;
 		}
 		backup(vg);
-- 
1.7.3.1




More information about the lvm-devel mailing list