mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-2729 Fix an out of bounds error
X-SVN-Rev: 11619
This commit is contained in:
parent
bd5e5cc715
commit
7add969d05
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ inline int32_t UVector32::push(int32_t i, UErrorCode &status) {
|
|||
|
||||
inline int32_t UVector32::popi(void) {
|
||||
int32_t result = 0;
|
||||
if (count >= 0) {
|
||||
if (count > 0) {
|
||||
count--;
|
||||
result = elements[count];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue