ICU-2729 Fix a memory leak

X-SVN-Rev: 11618
This commit is contained in:
George Rhoten 2003-04-21 23:25:07 +00:00
parent 9bb3d4a7a6
commit bd5e5cc715

View file

@ -594,8 +594,8 @@ void TestIDNA::testAPI(const UChar* src, const UChar* expected, const char* test
if(status != expectedStatus && expectedStatus != U_IDNA_UNASSIGNED_CODEPOINT_FOUND_ERROR){
errln( "Did not get the expected error for %s with source length and options set. Expected: %s Got: %s\n",testName, u_errorName(expectedStatus), u_errorName(status));
}
uprv_free(tSrc);
}
uprv_free(tSrc);
}
void TestIDNA::testCompare(const UChar* s1, int32_t s1Len,