ICU-5170 More RBBI with UText cleanup

X-SVN-Rev: 19594
This commit is contained in:
Andy Heninger 2006-04-26 01:07:31 +00:00
parent 4a1c753cf3
commit e710052695

View file

@ -70,18 +70,12 @@ ubrk_open(UBreakIteratorType type,
return 0;
}
if (text != NULL) {
UCharCharacterIterator *iter = 0;
iter = new UCharCharacterIterator(text, textLength);
if(iter == 0) {
*status = U_MEMORY_ALLOCATION_ERROR;
delete result;
return 0;
}
result->adoptText(iter);
}
return (UBreakIterator*)result;
UBreakIterator *uBI = (UBreakIterator *)result;
if (text != NULL) {
ubrk_setText(uBI, text, textLength, status);
}
return uBI;
}
@ -111,17 +105,11 @@ ubrk_openRules( const UChar *rules,
return 0;
}
UBreakIterator *uBI = (UBreakIterator *)result;
if (text != NULL) {
UCharCharacterIterator *iter = 0;
iter = new UCharCharacterIterator(text, textLength);
if(iter == 0) {
*status = U_MEMORY_ALLOCATION_ERROR;
delete result;
return 0;
}
result->adoptText(iter);
ubrk_setText(uBI, text, textLength, status);
}
return (UBreakIterator *)result;
return uBI;
}