mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-20388 ICU4C: intltest fails with a "Debug Assertion Break" on MSVC when compiled for Debug.
Need to use free() with malloc() instead of uprv_free().
This commit is contained in:
parent
00596d3027
commit
654278627a
1 changed files with 2 additions and 2 deletions
|
@ -2230,8 +2230,8 @@ void NumberFormatTest::TestCurrencyUnit(void){
|
|||
assertEquals("Copying from meter should fail", ec, U_ILLEGAL_ARGUMENT_ERROR);
|
||||
assertEquals("Copying should not give uninitialized ISO code", u"", failure.getISOCurrency());
|
||||
|
||||
uprv_free(EUR);
|
||||
uprv_free(EUR8);
|
||||
free(EUR);
|
||||
free(EUR8);
|
||||
}
|
||||
|
||||
void NumberFormatTest::TestCurrencyAmount(void){
|
||||
|
|
Loading…
Add table
Reference in a new issue