ICU-1733 Forgot a change from Lotus.

X-SVN-Rev: 7853
This commit is contained in:
George Rhoten 2002-03-01 23:26:35 +00:00
parent b42973bf54
commit ff18de7c2a

View File

@ -176,7 +176,7 @@ UBool UVector::ensureCapacity(int32_t minimumCapacity, UErrorCode &status) {
return FALSE;
}
uprv_memcpy(newElems, elements, sizeof(elements[0]) * count);
delete[] elements;
uprv_free(elements);
elements = newElems;
capacity = newCap;
return TRUE;