]> granicus.if.org Git - php/commitdiff
Kill unused var.
authorIlia Alshanetsky <iliaa@php.net>
Thu, 20 May 2004 22:24:30 +0000 (22:24 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Thu, 20 May 2004 22:24:30 +0000 (22:24 +0000)
ext/pdo_pgsql/pgsql_driver.c

index bbe89e464bd1af62168e0b78f113ab1c5702d20d..99b1c64edff33c9210d2974d959b335d4bb05807 100644 (file)
@@ -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);