diff options
| author | Tom Rini <[email protected]> | 2026-05-13 07:57:51 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-05-13 07:57:51 -0600 |
| commit | 1a0fac05c3109b48113b37328e847962ee0629ea (patch) | |
| tree | 985c3065f4c59f4a6f240517746c59de494c106c | |
| parent | 944427c3da6591f7971f48d91d69b60cbff3db12 (diff) | |
| parent | d5ea30b233e8162898d44da2c20dfc88e27d23db (diff) | |
Merge tag 'ab-master-12052026' of https://source.denx.de/u-boot/custodians/u-boot-tpm
- A single UAF fix from Kory for out fwumdata tool
| -rw-r--r-- | tools/fwumdata_src/fwumdata.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/fwumdata_src/fwumdata.c b/tools/fwumdata_src/fwumdata.c index c5b0f56842d..44195ce2bf2 100644 --- a/tools/fwumdata_src/fwumdata.c +++ b/tools/fwumdata_src/fwumdata.c @@ -84,6 +84,7 @@ static int parse_config(const char *fname) if (line[0] == '#' || line[0] == '\n') continue; + devname = NULL; rc = sscanf(line, "%ms %lli %lx %lx", &devname, &devices[i].devoff, |
