From 82ab3697a33e55591fe5b8c3c7fa8084424015f6 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Thu, 10 Apr 2014 10:19:44 +0200 Subject: parameters were not correctly initialized (issue #75) --- zend/callable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zend/callable.h b/zend/callable.h index 67863a9..8f2fbef 100644 --- a/zend/callable.h +++ b/zend/callable.h @@ -41,7 +41,7 @@ public: if (it->required()) _required++; // fill the arg info - fill(&_argv[i], *it); + fill(&_argv[i++], *it); } } -- cgit v1.2.3