X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/729e4ab9bc6618bc3d8a898e575df7f4019e29ca..ef6cf650f4a75c3f97de06b51fa104f2069b9ea2:/icuSources/common/uvectr64.cpp diff --git a/icuSources/common/uvectr64.cpp b/icuSources/common/uvectr64.cpp index c09ed513..8af85e6d 100644 --- a/icuSources/common/uvectr64.cpp +++ b/icuSources/common/uvectr64.cpp @@ -1,7 +1,7 @@ /* ****************************************************************************** -* Copyright (C) 1999-2010, International Business Machines Corporation and * -* others. All Rights Reserved. * +* Copyright (C) 1999-2015, International Business Machines Corporation and +* others. All Rights Reserved. ****************************************************************************** */ @@ -114,6 +114,9 @@ void UVector64::removeAllElements(void) { } UBool UVector64::expandCapacity(int32_t minimumCapacity, UErrorCode &status) { + if (U_FAILURE(status)) { + return FALSE; + } if (minimumCapacity < 0) { status = U_ILLEGAL_ARGUMENT_ERROR; return FALSE;