All of lore.kernel.org
 help / color / mirror / Atom feed
* master - systemid: Use correct mempool.
@ 2015-03-18 23:58 Alasdair Kergon
  0 siblings, 0 replies; only message in thread
From: Alasdair Kergon @ 2015-03-18 23:58 UTC (permalink / raw)
  To: lvm-devel

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



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-03-18 23:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-18 23:58 master - systemid: Use correct mempool Alasdair Kergon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.