ICU-6847 fix UTextTest::Ticket6847() so s[] is NUL-terminated.

X-SVN-Rev: 25807
This commit is contained in:
Peter Edberg 2009-04-17 15:29:22 +00:00
parent f940a828eb
commit 0fbf5646da

View file

@ -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);