ICU-4559 Fix memory leaks and other memory problems

X-SVN-Rev: 18246
This commit is contained in:
George Rhoten 2005-07-14 20:12:29 +00:00
parent 73fb5c7111
commit 244ff80e7e
3 changed files with 6 additions and 4 deletions

View file

@ -785,7 +785,7 @@ void TestCloneBinary(){
return;
}
/* hwo to check binary result ? */
/* how to check binary result ? */
c = ucol_openBinary(buffer, size, col, &err);
if(U_FAILURE(err)) {
@ -807,7 +807,8 @@ void TestCloneBinary(){
free(k2);
}
free(buffer);
return;
ucol_close(c);
ucol_close(col);
}
/*
----------------------------------------------------------------------------
@ -2070,4 +2071,4 @@ TestOpenBinary(void)
}
#endif /* #if !UCONFIG_NO_COLLATION */
#endif /* #if !UCONFIG_NO_COLLATION */

View file

@ -700,7 +700,7 @@ static void TestBreakIteratorUText(void) {
pos = ubrk_next(bi);
TEST_ASSERT(pos == UBRK_DONE);
ubrk_close(bi);
utext_close(bi);
utext_close(ut);
}

View file

@ -242,6 +242,7 @@ static void TestAPI(void) {
&status);
TEST_ASSERT(status == U_NO_WRITE_PERMISSION);
utext_close(uta);
}