From b389967f9a624b35c163767c34919cbdcd4e0917 Mon Sep 17 00:00:00 2001 From: Martin Schwan Date: Wed, 13 Aug 2025 13:54:06 +0200 Subject: [PATCH] bootstd: rauc: Don't null bootflow->bootmeth_priv Don't null bootflow->bootmeth_priv, as the private struct is freed later on by the bootflow. Signed-off-by: Martin Schwan Tested-by: Wadim Egorov --- boot/bootmeth_rauc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/boot/bootmeth_rauc.c b/boot/bootmeth_rauc.c index a27c85c4ff0..c8efdce75b9 100644 --- a/boot/bootmeth_rauc.c +++ b/boot/bootmeth_rauc.c @@ -193,7 +193,6 @@ static int distro_rauc_read_bootflow(struct udevice *dev, struct bootflow *bflow } free(priv); free(boot_order_copy); - bflow->bootmeth_priv = NULL; return ret; } -- 2.47.2