summaryrefslogtreecommitdiff
path: root/boot/image-android.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-07-03 08:27:29 -0600
committerTom Rini <trini@konsulko.com>2025-07-03 08:27:29 -0600
commit7598b469c16d97128d9c22839b06d94c5c331a7e (patch)
tree209b6c8e05b7d6c7450750528a5d1f8ff61cc3d3 /boot/image-android.c
parent1323b480a6fc053475901a90bdaece2ddcc47310 (diff)
parent4b489f517366595cd3f003d4175e721bd927a18b (diff)
Merge tag 'u-boot-dfu-next-20250703' of https://source.denx.de/u-boot/custodians/u-boot-dfu into next
u-boot-dfu-next-20250703 CI job: - https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/26938 Android: - Fix uninitialized vhdr pointer in image-android.c - Fix uninitialized vhdr pointer in abootimg cmd DFU: - Update maintainers file to include spl/spl_dfu
Diffstat (limited to 'boot/image-android.c')
-rw-r--r--boot/image-android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/image-android.c b/boot/image-android.c
index 14cf611cee5..1cd2060bb3f 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -680,7 +680,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
{
struct andr_image_data img_data;
const struct andr_boot_img_hdr_v0 *hdr;
- const struct andr_vnd_boot_img_hdr *vhdr;
+ const struct andr_vnd_boot_img_hdr *vhdr = NULL;
hdr = map_sysmem(hdr_addr, sizeof(*hdr));
if (vendor_boot_img != -1)