iliaa           Sun Dec  7 13:39:10 2003 EDT

  Modified files:              
    /php-src/ext/pgsql  pgsql.c 
  Log:
  Removed unused variable.
  
  
Index: php-src/ext/pgsql/pgsql.c
diff -u php-src/ext/pgsql/pgsql.c:1.298 php-src/ext/pgsql/pgsql.c:1.299
--- php-src/ext/pgsql/pgsql.c:1.298     Sat Dec  6 16:36:21 2003
+++ php-src/ext/pgsql/pgsql.c   Sun Dec  7 13:39:09 2003
@@ -19,7 +19,7 @@
    +----------------------------------------------------------------------+
  */
  
-/* $Id: pgsql.c,v 1.298 2003/12/06 21:36:21 helly Exp $ */
+/* $Id: pgsql.c,v 1.299 2003/12/07 18:39:09 iliaa Exp $ */
 
 #include <stdlib.h>
 
@@ -537,7 +537,6 @@
        smart_str str = {0};
        zval **args[5];
        int i, connect_type = 0;
-       char *msgbuf;
        PGresult *pg_result;
 
        if (ZEND_NUM_ARGS() < 1 || ZEND_NUM_ARGS() > 5
@@ -1021,7 +1020,6 @@
        PGresult *pgsql_result;
        ExecStatusType status;
        pgsql_result_handle *pg_result;
-       char *msgbuf;
 
        switch(ZEND_NUM_ARGS()) {
                case 1:
@@ -2545,7 +2543,6 @@
        int id = -1;
        PGconn *pgsql;
        int result = 0;
-       char *msgbuf;
 
        switch(ZEND_NUM_ARGS()) {
                case 0:
@@ -2586,7 +2583,6 @@
        int id = -1;
        PGconn *pgsql;
        int result = 0;
-       char *msgbuf;
 
        switch(ZEND_NUM_ARGS()) {
                case 1:
@@ -2640,7 +2636,6 @@
        char *csv = (char *)NULL;
        int ret;
        int argc = ZEND_NUM_ARGS();
-       char *msgbuf;
 
        if (zend_parse_parameters(argc TSRMLS_CC, "rs|ss",
                                                          &pgsql_link, &table_name, 
&table_name_len,
@@ -2751,7 +2746,6 @@
        PGresult *pgsql_result;
        ExecStatusType status;
        int argc = ZEND_NUM_ARGS();
-       char *msgbuf;
 
        if (zend_parse_parameters(argc TSRMLS_CC, "rs/a|ss",
                                                          &pgsql_link, &table_name, 
&table_name_len, &pg_rows,

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to