summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Merger (Role) <noreply-android-build-merger@google.com>2018-05-08 13:43:04 +0000
committerAndroid Build Merger (Role) <noreply-android-build-merger@google.com>2018-05-08 13:43:04 +0000
commite26eac123aa0d7d918c87c567f5c1d8fe8b137b5 (patch)
tree48d071979b71e60dac2a4be4467fb0d6927ba478
parent658d5fee09923c532ec68da3ff7d226a144e5e38 (diff)
parent2787b2a84ec8b14815c84a39a0b0f72da274fc21 (diff)
downloadneven-e26eac123aa0d7d918c87c567f5c1d8fe8b137b5.tar.gz
[automerger] Make bound check proper in bbf_Scanner_addOutPos am: fb710d3c6a am: f2dd438ff3 am: 7942c8493a am: d5993d6f07 am: d3ee23d15a am: 2787b2a84e
Change-Id: I0c34d6c077b4f751dc00a516c39908b9e31ba3ac
-rw-r--r--Embedded/common/src/b_BitFeatureEm/Scanner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Embedded/common/src/b_BitFeatureEm/Scanner.c b/Embedded/common/src/b_BitFeatureEm/Scanner.c
index 327e714..1a0ae2a 100644
--- a/Embedded/common/src/b_BitFeatureEm/Scanner.c
+++ b/Embedded/common/src/b_BitFeatureEm/Scanner.c
@@ -1064,7 +1064,7 @@ void bbf_Scanner_addOutPos( struct bbs_Context* cpA,
uint32 scaleA,
int32 actA )
{
- if( ( ptrA->outCountE * 4 ) < ptrA->outArrE.sizeE )
+ if( ( ptrA->outCountE * 4 + 3 ) < ptrA->outArrE.sizeE )
{
ptrA->outArrE.arrPtrE[ ptrA->outCountE * 4 + 0 ] = xA;
ptrA->outArrE.arrPtrE[ ptrA->outCountE * 4 + 1 ] = yA;