mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
ICU-6847 fix UTextTest::Ticket6847() so s[] is NUL-terminated.
X-SVN-Rev: 25807
This commit is contained in:
parent
f940a828eb
commit
0fbf5646da
1 changed files with 2 additions and 1 deletions
|
@ -1405,8 +1405,9 @@ void UTextTest::Ticket5560() {
|
|||
//
|
||||
void UTextTest::Ticket6847() {
|
||||
const int STRLEN = 90;
|
||||
UChar s[STRLEN];
|
||||
UChar s[STRLEN+1];
|
||||
u_memset(s, 0x41, STRLEN);
|
||||
s[STRLEN] = 0;
|
||||
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
UText *ut = utext_openUChars(NULL, s, -1, &status);
|
||||
|
|
Loading…
Add table
Reference in a new issue