diff options
author | Jacob Garber <jgarber1@ualberta.ca> | 2019-07-02 10:50:10 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-07 20:25:12 +0000 |
commit | f2ba2d9421744eb31e4001f448ad02593dd82883 (patch) | |
tree | f3b92594abf002dc982a0006fc3f8210483be124 /src/arch | |
parent | 3c2305f162d24cf07fa6079bd20fd2839e5d672c (diff) | |
download | coreboot-f2ba2d9421744eb31e4001f448ad02593dd82883.tar.xz |
arch/x86: Use ssize_t to store length
size_t is the wrong type to store the return value of
acpi_device_path_fill(), since any negative error values will be
converted to a very large unsigned integer and potentially cause
buffer overflow.
Change-Id: Ia8ed62ecfac8eaa18a61545bd203b3c7a7cd9ca5
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Found-by: Coverity CID 1402095
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33962
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/acpi_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/acpi_device.c b/src/arch/x86/acpi_device.c index 57fbc89064..0fb8f3b000 100644 --- a/src/arch/x86/acpi_device.c +++ b/src/arch/x86/acpi_device.c @@ -148,7 +148,7 @@ const char *acpi_device_scope(struct device *dev) const char *acpi_device_path_join(struct device *dev, const char *name) { static char buf[DEVICE_PATH_MAX] = {}; - size_t len; + ssize_t len; if (!dev) return NULL; |