From 06e9ae9b109f0748d0cfa4c7fa35dc904a367f56 Mon Sep 17 00:00:00 2001 From: "Oleg.Karfich@wago.com" Date: Tue, 28 Aug 2018 16:09:46 +0000 Subject: commands: of_property: copy value instead of resizing Commit 748d1b8 adds the fixup feature to the above command. With this commit an unwanted free(data) on the freshly set property value is done if someone tries to set the value of an already present property (not the case for a new property). Furthermore in fixup mode the pointer fixup->data is freed when the fixup function is called more than once. This leads to a hanging system after calling of_dump -F many times. Fix this issues by copying the data to a new allocated memory area like a new property is created. Signed-off-by: Oleg Karfich Signed-off-by: Sascha Hauer --- commands/of_property.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/of_property.c b/commands/of_property.c index d0b923f4f2..31e9b71dd7 100644 --- a/commands/of_property.c +++ b/commands/of_property.c @@ -270,9 +270,8 @@ static int do_of_property_set_now(struct device_node *root, const char *path, free(pp->value); pp->value_const = NULL; - /* limit property data to the actual size */ if (len) - pp->value = xrealloc(data, len); + pp->value = xmemdup(data, len); else pp->value = NULL; -- cgit v1.2.3