From ab07decf483bb3865aabfacb0497a183b1292686 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 14 Jul 2016 12:58:29 +0000 Subject: [PATCH] [BOOTLIB] Fix out of bounds read. CID #1363549 svn path=/trunk/; revision=71940 --- reactos/boot/environ/lib/misc/bcd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/boot/environ/lib/misc/bcd.c b/reactos/boot/environ/lib/misc/bcd.c index 12a94ae8210..7f38fbd32b7 100644 --- a/reactos/boot/environ/lib/misc/bcd.c +++ b/reactos/boot/environ/lib/misc/bcd.c @@ -778,8 +778,7 @@ BiEnumerateSubObjectElements ( (&SubObjectList[i])->Data4[4], (&SubObjectList[i])->Data4[5], (&SubObjectList[i])->Data4[6], - (&SubObjectList[i])->Data4[7], - (&SubObjectList[i])->Data4[8]); + (&SubObjectList[i])->Data4[7]); Status = STATUS_SUCCESS; } }