Commit 10b374ae authored by Tatsuo Ishii's avatar Tatsuo Ishii

Fix bug in pg_convert() per report from MaC.Yui.

It pfree() wrong pointer.
parent d35dc342
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* client encoding and server internal encoding. * client encoding and server internal encoding.
* (currently mule internal code (mic) is used) * (currently mule internal code (mic) is used)
* Tatsuo Ishii * Tatsuo Ishii
* $Id: mbutils.c,v 1.31 2002/08/14 05:33:34 ishii Exp $ * $Id: mbutils.c,v 1.32 2002/08/19 04:08:08 ishii Exp $
*/ */
#include "postgres.h" #include "postgres.h"
#include "access/xact.h" #include "access/xact.h"
...@@ -211,7 +211,7 @@ pg_convert(PG_FUNCTION_ARGS) ...@@ -211,7 +211,7 @@ pg_convert(PG_FUNCTION_ARGS)
pg_convert2, string, src_encoding_name, dest_encoding_name); pg_convert2, string, src_encoding_name, dest_encoding_name);
/* free memory allocated by namein */ /* free memory allocated by namein */
pfree((void *)dest_encoding_name); pfree((void *)src_encoding_name);
PG_RETURN_TEXT_P(result); PG_RETURN_TEXT_P(result);
} }
......
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