Can anyone spot the bug in following code from the tutorial [1]?

  PHP_FUNCTION(hello_dump)
  {
      zval *uservar;
  
      if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", uservar) == 
FAILURE) {
          RETURN_NULL();
      }

Mike

[1] http://www.zend.com/php/internals/extension-writing2.php#Heading3

-- 
Michael B Allen
PHP Extension for SSO w/ Windows Group Authorization
http://www.ioplex.com/

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to