Skip to content

Commit c21d603

Browse files
author
Michael Meskes
committed
Use correct connection name variable in ecpglib.
Fixed-by: Kuroda-san <[email protected]>
1 parent 06c8a50 commit c21d603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/ecpg/ecpglib/prepare.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ ECPGdeallocate(int lineno, int c, const char *connection_name, const char *name)
298298
}
299299

300300
con = ecpg_get_connection(real_connection_name);
301-
if (!ecpg_init(con, connection_name, lineno))
301+
if (!ecpg_init(con, real_connection_name, lineno))
302302
return false;
303303

304304
this = ecpg_find_prepared_statement(name, con, &prev);

0 commit comments

Comments
 (0)