From 09d3095b66fe2af778cf97559db82ee8f0405b0f Mon Sep 17 00:00:00 2001 From: Arjen Brouwer Date: Mon, 21 Nov 2011 23:57:44 +0100 Subject: [PATCH] Moved zval declaration --- ext/twig/twig.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/twig/twig.c b/ext/twig/twig.c index 6bf8265..83e5d6c 100644 --- a/ext/twig/twig.c +++ b/ext/twig/twig.c @@ -702,6 +702,8 @@ PHP_FUNCTION(twig_template_get_attributes) zend_bool isDefinedTest = 0; zend_bool ignoreStrictCheck = 0; int free_ret = 0; + zval *tmp_self_cache; + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ozz|asbb", &template, &object, &item, &arguments, &type, &type_len, &isDefinedTest, &ignoreStrictCheck) == FAILURE) { return; @@ -816,8 +818,6 @@ PHP_FUNCTION(twig_template_get_attributes) } } */ - zval *tmp_self_cache; - if (Z_TYPE_P(object) == IS_OBJECT) { char *class_name = NULL; -- 1.7.2.5