From: Martin Schwan Date: Wed, 13 Aug 2025 11:54:06 +0000 (+0200) Subject: bootstd: rauc: Don't null bootflow->bootmeth_priv X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b389967f9a624b35c163767c34919cbdcd4e0917;p=pandora-u-boot.git 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 --- 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; }