Commit c56c8c43 by Tom Tromey Committed by Tom Tromey

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
parent 81ee8129
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment