diff options
| author | Tom Rini <[email protected]> | 2025-07-03 08:27:29 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-03 08:27:29 -0600 |
| commit | 7598b469c16d97128d9c22839b06d94c5c331a7e (patch) | |
| tree | 209b6c8e05b7d6c7450750528a5d1f8ff61cc3d3 /cmd | |
| parent | 1323b480a6fc053475901a90bdaece2ddcc47310 (diff) | |
| parent | 4b489f517366595cd3f003d4175e721bd927a18b (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 'cmd')
| -rw-r--r-- | cmd/abootimg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/abootimg.c b/cmd/abootimg.c index 44de00fb9c9..6fb52153786 100644 --- a/cmd/abootimg.c +++ b/cmd/abootimg.c @@ -96,7 +96,7 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[]) return CMD_RET_USAGE; struct andr_image_data img_data = {0}; 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(abootimg_addr(), sizeof(*hdr)); if (get_avendor_bootimg_addr() != -1) |
