wez             Mon Feb 10 15:30:24 2003 EDT

  Modified files:              
    /php4/ext/rpc/com   com.c 
  Log:
  byref really means that we want the zval...
  
Index: php4/ext/rpc/com/com.c
diff -u php4/ext/rpc/com/com.c:1.18 php4/ext/rpc/com/com.c:1.19
--- php4/ext/rpc/com/com.c:1.18 Mon Feb 10 13:37:27 2003
+++ php4/ext/rpc/com/com.c      Mon Feb 10 15:30:23 2003
@@ -539,15 +539,14 @@
                }
        }
 
-       smart_str_appendl(argtypes_str, &zppflag, 1);
        if (ref) {
-               smart_str_appendl(argtypes_str, "/", 1);
+               smart_str_appendl(argtypes_str, "z/", 2);
                *argflags = BYREF_FORCE;
        } else {
                *argflags = BYREF_NONE;
-       }
-       if (nullable) {
-               smart_str_appendl(argtypes_str, "!", 1);
+               if (nullable) {
+                       smart_str_appendl(argtypes_str, "!", 1);
+               }
        }
 }
 



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

Reply via email to