[PATCH] initialize pgconn to null

From: "Scot Loach" <sloach(at)sandvine(dot)com>
To: <pgsql-odbc(at)postgresql(dot)org>
Subject: [PATCH] initialize pgconn to null
Date: 2005-10-25 01:29:10
Message-ID: 71837C040963F748B9B94E123A289678E32637@mailserver.sandvine.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

This patch fixes a potential segfault that can happen if a dbc handle is created and then destroyed without attempting a connection.

The problem is that CC_Constructor doesn't initialize this new member variable.

--- connection.c.old 2005-10-24 21:23:55.000000000 -0400
+++ connection.c 2005-10-24 21:16:39.000000000 -0400
@@ -2443,6 +2443,7 @@
rv->current_schema = NULL;
rv->num_discardp = 0;
rv->discardp = NULL;
+ rv->pgconn = NULL;

/* Initialize statement options to defaults */
/* Statements under this conn will inherit these options */

Browse pgsql-odbc by date

  From Date Subject
Next Message Dave Page 2005-10-25 07:35:35 Re: [PATCH] initialize pgconn to null
Previous Message Greg Campbell 2005-10-21 15:12:12 Re: versions of oDBC driver