mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-9115 ubrk_setText does not check the input (Null check)
X-SVN-Rev: 31397
This commit is contained in:
parent
5dd029e6e5
commit
3f18f96246
1 changed files with 13 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
********************************************************************************
|
||||
* Copyright (C) 1996-2011, International Business Machines
|
||||
* Copyright (C) 1996-2012, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
********************************************************************************
|
||||
*/
|
||||
|
@ -166,6 +166,12 @@ ubrk_setText(UBreakIterator* bi,
|
|||
int32_t textLength,
|
||||
UErrorCode* status)
|
||||
{
|
||||
if (bi == NULL) {
|
||||
if (U_SUCCESS(*status)) {
|
||||
*status = U_ILLEGAL_ARGUMENT_ERROR;
|
||||
}
|
||||
return;
|
||||
}
|
||||
BreakIterator *brit = (BreakIterator *)bi;
|
||||
UText ut = UTEXT_INITIALIZER;
|
||||
utext_openUChars(&ut, text, textLength, status);
|
||||
|
@ -181,6 +187,12 @@ ubrk_setUText(UBreakIterator *bi,
|
|||
UText *text,
|
||||
UErrorCode *status)
|
||||
{
|
||||
if (bi == NULL) {
|
||||
if (U_SUCCESS(*status)) {
|
||||
*status = U_ILLEGAL_ARGUMENT_ERROR;
|
||||
}
|
||||
return;
|
||||
}
|
||||
RuleBasedBreakIterator *brit = (RuleBasedBreakIterator *)bi;
|
||||
brit->RuleBasedBreakIterator::setText(text, *status);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue