forked from pool/u-boot
- Update to 2024.04: * Full changelog available at: https://source.denx.de/u-boot/u-boot/-/compare/v2024.01...v2024.04 - Patch queue updated from https://github.com/openSUSE/u-boot.git tumbleweed-2024.04 * Patches dropped: 0017-rpi5-add-initial-memory-map-for-bcm.patch 0018-rpi5-Use-devicetree-as-alternative-.patch 0019-rpi5-Use-devicetree-to-retrieve-boa.patch 0020-bcm2835-Dynamically-calculate-bytes.patch 0021-mmc-bcmstb-Add-support-for-bcm2712-.patch 0022-configs-rpi_arm64-enable-SDHCI-BCMS.patch 0023-configs-rpi_arm64-build-position-in.patch OBS-URL: https://build.opensuse.org/request/show/1165560 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=208
34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From f8dd0b165a5da5dc83ce7705070a9234cbb52782 Mon Sep 17 00:00:00 2001
|
|
From: Matthias Brugger <mbrugger@suse.com>
|
|
Date: Wed, 17 Mar 2021 12:20:32 +0100
|
|
Subject: [PATCH] smbios: Fix table when no string is present
|
|
|
|
When no string is present in a table, next_ptr points to the same
|
|
location as eos. When calculating the string table length, we would only
|
|
reserve one \0. By spec a SMBIOS table has to end with two \0\0 when no
|
|
strings a present.
|
|
|
|
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
|
|
|
|
Series-to: sjg@chromium.org
|
|
Series-cc: bmeng.cn@gmail.com
|
|
Series-cc: xypron.glpk@gmx.de
|
|
Series-cc: u-boot@lists.denx.de
|
|
---
|
|
lib/smbios.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/smbios.c b/lib/smbios.c
|
|
index c83af730a9..5723da0ca4 100644
|
|
--- a/lib/smbios.c
|
|
+++ b/lib/smbios.c
|
|
@@ -273,7 +273,7 @@ static int smbios_add_prop(struct smbios_ctx *ctx, const char *prop,
|
|
static void smbios_set_eos(struct smbios_ctx *ctx, char *eos)
|
|
{
|
|
ctx->eos = eos;
|
|
- ctx->next_ptr = eos;
|
|
+ ctx->next_ptr = eos + 1;
|
|
ctx->last_str = NULL;
|
|
}
|
|
|