ICU-2729 Fix an out of bounds error

X-SVN-Rev: 11619
This commit is contained in:
George Rhoten 2003-04-21 23:25:38 +00:00
parent bd5e5cc715
commit 7add969d05

View file

@ -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];
}