phanto          Tue Jan 28 19:59:54 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/ext/com       COM.c 
  Log:
  fix warnings
  
Index: php4/ext/com/COM.c
diff -u php4/ext/com/COM.c:1.90.2.2 php4/ext/com/COM.c:1.90.2.3
--- php4/ext/com/COM.c:1.90.2.2 Tue Jan 28 19:10:00 2003
+++ php4/ext/com/COM.c  Tue Jan 28 19:59:54 2003
@@ -18,7 +18,7 @@
    |         Wez Furlong  <[EMAIL PROTECTED]>                          |
    +----------------------------------------------------------------------+
  */
-/* $Id: COM.c,v 1.90.2.2 2003/01/29 00:10:00 phanto Exp $ */
+/* $Id: COM.c,v 1.90.2.3 2003/01/29 00:59:54 phanto Exp $ */
 /*
  * This module implements support for COM components that support the IDispatch
  * interface.  Both local (COM) and remote (DCOM) components can be accessed.
@@ -973,7 +973,6 @@
        pval **arguments;
        pval *object, *function_name;
        comval *obj;
-       int type;
        int arg_count = ZEND_NUM_ARGS();
        VARIANT *var_result;
 
@@ -1016,7 +1015,6 @@
 {
        pval *object;
        comval *obj;
-       int type;
        int arg_count = ZEND_NUM_ARGS();
 
        if (arg_count != 1) {
@@ -1041,7 +1039,6 @@
 {
        pval *object;
        comval *obj;
-       int type;
        int arg_count = ZEND_NUM_ARGS();
 
        if (arg_count != 1) {
@@ -2309,9 +2306,7 @@
 PHP_FUNCTION(com_isenum)
 {
        pval *object;
-       pval **comval_handle;
        comval *obj;
-       int type;
 
        if (ZEND_NUM_ARGS() != 1) {
                ZEND_WRONG_PARAM_COUNT();



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

Reply via email to