mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-4559 Fix memory leaks and other memory problems
X-SVN-Rev: 18246
This commit is contained in:
parent
73fb5c7111
commit
244ff80e7e
3 changed files with 6 additions and 4 deletions
|
@ -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 */
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -242,6 +242,7 @@ static void TestAPI(void) {
|
|||
&status);
|
||||
TEST_ASSERT(status == U_NO_WRITE_PERMISSION);
|
||||
|
||||
utext_close(uta);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue