summaryrefslogtreecommitdiff
path: root/Zend/zend_ptr_stack.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-07-30 12:23:12 +0000
committerAndi Gutmans <andi@php.net>1999-07-30 12:23:12 +0000
commit2c32cc81dde4c2cc7198f738b28ef9e0119b5805 (patch)
treee0077373eadf50fee19d610bb96e1cd32e37e0d5 /Zend/zend_ptr_stack.c
parente9e7bc6db32ebd0f33d37d85066fb7eda126c7ac (diff)
downloadphp-git-2c32cc81dde4c2cc7198f738b28ef9e0119b5805.tar.gz
- Cut&paste crap
Diffstat (limited to 'Zend/zend_ptr_stack.c')
-rw-r--r--Zend/zend_ptr_stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_ptr_stack.c b/Zend/zend_ptr_stack.c
index 8cbba37eb0..033743d967 100644
--- a/Zend/zend_ptr_stack.c
+++ b/Zend/zend_ptr_stack.c
@@ -73,7 +73,7 @@ ZEND_API inline void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count,...)
va_start(ptr, count);
while (count>0) {
elem = va_arg(ptr, void **);
- *elem = *(stack->top_element--) = elem;
+ *elem = *(stack->top_element--);
stack->top--;
count--;
}