[lvm-devel] master - systemid: Use correct mempool.

Alasdair Kergon agk at fedoraproject.org
Wed Mar 18 23:58:14 UTC 2015


Gitweb:        http://git.fedorahosted.org/git/?p=lvm2.git;a=commitdiff;h=87941ccd1706ac9818f0f4828cade1d4cfae622d
Commit:        87941ccd1706ac9818f0f4828cade1d4cfae622d
Parent:        80f4b4b8039a88dfa2648a9b5bb5e16f41b81f87
Author:        Alasdair G Kergon <agk at redhat.com>
AuthorDate:    Wed Mar 18 23:25:30 2015 +0000
Committer:     Alasdair G Kergon <agk at redhat.com>
CommitterDate: Wed Mar 18 23:25:30 2015 +0000

systemid: Use correct mempool.

libmem is necessary when this ends up in cmd->system_id.
---
 lib/commands/toolcontext.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c
index 54dcf86..fb0e94d 100644
--- a/lib/commands/toolcontext.c
+++ b/lib/commands/toolcontext.c
@@ -67,7 +67,7 @@ const char *system_id_from_string(struct cmd_context *cmd, const char *str)
 		return "";
 	}
 
-	if (!(system_id = dm_pool_zalloc(cmd->mem, strlen(str) + 1))) {
+	if (!(system_id = dm_pool_zalloc(cmd->libmem, strlen(str) + 1))) {
 		log_warn("WARNING: Failed to allocate system ID.");
 		return NULL;
 	}




More information about the lvm-devel mailing list