summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawin Vongmasa <pawin@google.com>2018-07-14 05:04:34 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-07-14 05:04:34 -0700
commitd8561ce960bd8af69351361db6f020c1c2a39111 (patch)
tree13dea522a40d4ee947def21b33c258f6aba01b55
parent95e6c4663c640c67a69e1d2b44696753282136f8 (diff)
parentf88ab0b1d9ff971bec9b08c25ae11198bc6d362f (diff)
downloadneven-d8561ce960bd8af69351361db6f020c1c2a39111.tar.gz
[automerger] Make bound check proper in bbf_Scanner_addOutPos am: fb710d3c6a am: f2dd438ff3 am: 7942c8493a am: d5993d6f07 am: d3ee23d15a am: 2787b2a84e am: e26eac123a am: adf91e2219 am: c3914fb85a am: af8bd4f764
am: f88ab0b1d9 Change-Id: I999c22546fe8b187378212263ceeb895806418c8
-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;