summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2021-02-10 14:33:17 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2021-02-10 15:38:18 +0100
commit96910de4c7acbc11dc9f4c43925765847a059871 (patch)
tree2c6295c1b3b3d912be440468c4fcec63842fbf13
parentf74f94c2ddb1d33d75d325c959344a566a621fd5 (diff)
downloadlvm2-96910de4c7acbc11dc9f4c43925765847a059871.tar.gz
dev-cache: remove duplicated allocation
Merge mistake missed to remove allocation that is now postponed until it's really needed.
-rw-r--r--lib/device/dev-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/device/dev-cache.c b/lib/device/dev-cache.c
index 2783d4acc..67e1386d3 100644
--- a/lib/device/dev-cache.c
+++ b/lib/device/dev-cache.c
@@ -329,7 +329,7 @@ enum add_hash {
static int _add_alias(struct device *dev, const char *path, enum add_hash hash)
{
- struct dm_str_list *sl = _zalloc(sizeof(*sl));
+ struct dm_str_list *sl;
struct dm_str_list *strl;
const char *oldpath;
int prefer_old = 1;