natIconv.cc (Input_iconv::finalize): Call iconv_close when handle is not NULL.
* gnu/gcj/convert/natIconv.cc (Input_iconv::finalize): Call iconv_close when handle is not NULL. Thanks to Andrew Haley. (Output_iconv::finalize): Likewise. From-SVN: r31876
This commit is contained in:
parent
81ee8129ce
commit
c56c8c43b9
2 changed files with 8 additions and 2 deletions
|
@ -47,7 +47,7 @@ void
|
|||
gnu::gcj::convert::Input_iconv::finalize (void)
|
||||
{
|
||||
#ifdef HAVE_ICONV
|
||||
if (handle == NULL)
|
||||
if (handle != NULL)
|
||||
{
|
||||
iconv_close ((iconv_t) handle);
|
||||
handle = NULL;
|
||||
|
@ -108,7 +108,7 @@ void
|
|||
gnu::gcj::convert::Output_iconv::finalize (void)
|
||||
{
|
||||
#ifdef HAVE_ICONV
|
||||
if (handle == NULL)
|
||||
if (handle != NULL)
|
||||
{
|
||||
iconv_close ((iconv_t) handle);
|
||||
handle = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue