add U_FAILURE(status) in emplaceBackAndConfirm

This commit is contained in:
younies 2020-06-16 20:57:18 +02:00
parent d7f1b6e8ac
commit 63b93bde5c

View file

@ -778,6 +778,9 @@ public:
template <typename... Args>
T *emplaceBackAndCheckErrorCode(UErrorCode &status, Args &&... args) {
if (U_FAILURE(status)) {
return nullptr;
}
T *pointer = this->create(args...);
if (U_SUCCESS(status) && pointer == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;