mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-29 12:07:18 +02:00
must free storage obtained by new[] with delete[]
[SVN r28251]
This commit is contained in:
@ -82,8 +82,8 @@ void conv_test()
|
|||||||
to_upper( str3 );
|
to_upper( str3 );
|
||||||
BOOST_CHECK( str3=="" );
|
BOOST_CHECK( str3=="" );
|
||||||
|
|
||||||
free(pch1);
|
delete[] pch1;
|
||||||
free(pch2);
|
delete[] pch2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// test main
|
// test main
|
||||||
|
Reference in New Issue
Block a user