mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Fix small bug I saw in bounds checking
git-svn-id: https://zxing.googlecode.com/svn/trunk@1880 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
afe03407b1
commit
6c87ea3ee6
|
@ -366,7 +366,7 @@ public final class RSSExpandedReader extends AbstractRSSReader{
|
||||||
start = this.startEnd[0];
|
start = this.startEnd[0];
|
||||||
|
|
||||||
int firstElementStart = this.startEnd[1] + 1;
|
int firstElementStart = this.startEnd[1] + 1;
|
||||||
while(row.get(firstElementStart) && firstElementStart < row.size) {
|
while (firstElementStart < row.size && row.get(firstElementStart)) {
|
||||||
firstElementStart++;
|
firstElementStart++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue