Commit d488bfe8 d488bfe8382aad85769014a2752192b110a34f0a by Sergey Poznyakoff

(destroy): Bugfix: do not free pgconn

1 parent 26fde04f
......@@ -58,7 +58,6 @@ static int
destroy (mu_sql_connection_t conn)
{
struct mu_pgsql_data *dp = conn->data;
free (dp->pgconn);
free (dp);
conn->data = NULL;
return 0;
......