- dmidecode-fix-memory-array-location-overrun.patch: Fix boundary

checks of memory array location codes (DMI type 16).

OBS-URL: https://build.opensuse.org/package/show/Base:System/dmidecode?expand=0&rev=10
This commit is contained in:
Jean Delvare 2011-01-25 17:02:53 +00:00 committed by Git OBS Bridge
parent c412925c8f
commit 3ea38f8b54
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,16 @@
Upstream: http://cvs.savannah.gnu.org/viewvc/dmidecode/dmidecode.c?root=dmidecode&r1=1.166&r2=1.167
Fix boundary checks of memory array location codes (DMI type 16).
Reported by Andrey Matveyev.
--- dmidecode/dmidecode.c 2010/11/24 20:48:19 1.166
+++ dmidecode/dmidecode.c 2011/01/25 16:19:42 1.167
@@ -2100,7 +2100,7 @@
if (code >= 0x01 && code <= 0x0A)
return location[code - 0x01];
- if (code >= 0xA0 && code <= 0xA4)
+ if (code >= 0xA0 && code <= 0xA3)
return location_0xA0[code - 0xA0];
return out_of_spec;
}

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Jan 25 17:58:57 CET 2011 - jdelvare@suse.de
- dmidecode-fix-memory-array-location-overrun.patch: Fix boundary
checks of memory array location codes (DMI type 16).
-------------------------------------------------------------------
Thu Jan 20 13:53:27 CET 2011 - jdelvare@suse.de

View File

@ -28,6 +28,7 @@ Provides: pmtools:/usr/sbin/dmidecode
AutoReqProv: on
Summary: DMI table decoder
Source: %{name}-%{version}.tar.bz2
Patch1: dmidecode-fix-memory-array-location-overflow.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 x86_64
Obsoletes: pmtools < 20071117
@ -48,6 +49,7 @@ the BIOS told it to.
%prep
%setup
%patch1 -p1
%build
make CFLAGS="$RPM_OPT_FLAGS"