mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-5092 Fix for i5/OS
X-SVN-Rev: 19765
This commit is contained in:
parent
88067a2bd1
commit
49e8d0adc6
1 changed files with 4 additions and 3 deletions
|
@ -284,12 +284,13 @@ void IdnaConfTest::Test(void){
|
|||
UnicodeString value;
|
||||
|
||||
// skip everything before the first "=====" and "=====" itself
|
||||
for (;;){
|
||||
ReadOneLine(s);
|
||||
if (s.compare(C_TAG, -1) == 0){ //"====="
|
||||
do {
|
||||
if (!ReadOneLine(s)) {
|
||||
errln("End of file prematurely found");
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (s.compare(C_TAG, -1) != 0); //"====="
|
||||
|
||||
while(ReadOneLine(s)){
|
||||
s.trim();
|
||||
|
|
Loading…
Add table
Reference in a new issue