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:
Tom Tromey 2000-02-10 00:14:54 +00:00 committed by Tom Tromey
parent 81ee8129ce
commit c56c8c43b9
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2000-02-09 Tom Tromey <tromey@cygnus.com>
* gnu/gcj/convert/natIconv.cc (Input_iconv::finalize): Call
iconv_close when handle is not NULL. Thanks to Andrew Haley.
(Output_iconv::finalize): Likewise.
2000-02-08 Tom Tromey <tromey@cygnus.com>
* java/util/Properties.java (setProperty): New method.

View File

@ -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;