From: Pierre Joye Date: Thu, 14 Jul 2011 11:12:33 +0000 (+0000) Subject: - fix build X-Git-Tag: php-5.4.0alpha3~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=894a746a8067ac8c9c7e9bfb238cb13752099712;p=php - fix build --- diff --git a/ext/xsl/xsltprocessor.c b/ext/xsl/xsltprocessor.c index 82a223787a..59c8bed8b0 100644 --- a/ext/xsl/xsltprocessor.c +++ b/ext/xsl/xsltprocessor.c @@ -916,8 +916,9 @@ PHP_FUNCTION(xsl_xsltprocessor_set_security_prefs) { zval *id; xsl_object *intern; - DOM_GET_THIS(id); long securityPrefs, oldSecurityPrefs; + + DOM_GET_THIS(id); if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &securityPrefs) == FAILURE) { return; } @@ -933,9 +934,9 @@ PHP_FUNCTION(xsl_xsltprocessor_get_security_prefs) { zval *id; xsl_object *intern; - DOM_GET_THIS(id); long securityPrefs; + DOM_GET_THIS(id); if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "") == SUCCESS) { intern = (xsl_object *)zend_object_store_get_object(id TSRMLS_CC); RETURN_LONG(intern->securityPrefs);