Commit c21d6033 authored by Michael Meskes's avatar Michael Meskes

Use correct connection name variable in ecpglib.

Fixed-by: default avatarKuroda-san <kuroda.hayato@jp.fujitsu.com>
parent 06c8a509
...@@ -298,7 +298,7 @@ ECPGdeallocate(int lineno, int c, const char *connection_name, const char *name) ...@@ -298,7 +298,7 @@ ECPGdeallocate(int lineno, int c, const char *connection_name, const char *name)
} }
con = ecpg_get_connection(real_connection_name); con = ecpg_get_connection(real_connection_name);
if (!ecpg_init(con, connection_name, lineno)) if (!ecpg_init(con, real_connection_name, lineno))
return false; return false;
this = ecpg_find_prepared_statement(name, con, &prev); this = ecpg_find_prepared_statement(name, con, &prev);
......
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