summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-05-20 22:24:30 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-05-20 22:24:30 +0000
commit41784bfcffaf89a79b6ba2d6208a1a6e41060edc (patch)
treeeae882825009b55105a4e13aa99ead141b9fdf68
parente0ac3f66aeff5c80859bce6e81dbb22231cf84fd (diff)
downloadphp-git-41784bfcffaf89a79b6ba2d6208a1a6e41060edc.tar.gz
Kill unused var.
-rw-r--r--ext/pdo_pgsql/pgsql_driver.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c
index bbe89e464b..99b1c64edf 100644
--- a/ext/pdo_pgsql/pgsql_driver.c
+++ b/ext/pdo_pgsql/pgsql_driver.c
@@ -133,7 +133,6 @@ static long pgsql_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRM
static int pgsql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC)
{
- pdo_pgsql_db_handle *H = (pdo_pgsql_db_handle *)dbh->driver_data;
*quoted = emalloc(2*unquotedlen + 3);
(*quoted)[0] = '\'';
*quotedlen = PQescapeString(*quoted + 1, unquoted, unquotedlen);