diff options
| author | Tom Rini <[email protected]> | 2026-06-03 12:21:24 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-06-03 12:21:24 -0600 |
| commit | a4c8728f225b0d7d591fb9199ce7efb72f48290e (patch) | |
| tree | 295234d16bbf194c171484835ef7ff1a99cb0eba /boot | |
| parent | 5188b96cdb7884cdcad2a068450e66516edf74f9 (diff) | |
| parent | fac46e5aa7c448444764044467e0cceb9d12f3f0 (diff) | |
Merge tag 'net-20260603' of https://source.denx.de/u-boot/custodians/u-boot-net
Pull request net-20260603.
net:
- ti: icssg: Fix portname buffer overflow
- pxe: Fix potential initrd_filesize buffer overflow
net-legacy:
- bootp, dhcpv6: Prevent out-of-bound reads and buffer overflow
- sntp: Check packet length in sntp_handler
Diffstat (limited to 'boot')
| -rw-r--r-- | boot/pxe_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/pxe_utils.c b/boot/pxe_utils.c index 419ab1f1b0e..8c1310dabeb 100644 --- a/boot/pxe_utils.c +++ b/boot/pxe_utils.c @@ -546,7 +546,7 @@ static int label_boot(struct pxe_context *ctx, struct pxe_label *label) char *zboot_argv[] = { "zboot", NULL, "0", NULL, NULL }; char *kernel_addr = NULL; char *initrd_addr_str = NULL; - char initrd_filesize[10]; + char initrd_filesize[17]; char initrd_str[28]; char mac_str[29] = ""; char ip_str[68] = ""; |
