summaryrefslogtreecommitdiff
path: root/Zend/zend_stack.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-22 16:10:51 +0000
committerZeev Suraski <zeev@php.net>1999-05-22 16:10:51 +0000
commit1250c43a39cb562659076859bcf7c77260e45ffd (patch)
tree082c64d5b12b875659a5fd416c77a4cb959dd54d /Zend/zend_stack.h
parent165280264178a9b561eac1e4b5985e0649c906a2 (diff)
downloadphp-git-1250c43a39cb562659076859bcf7c77260e45ffd.tar.gz
* Add struct name to all typedef's so that they can be debugged with MSVC
* Fix an AiCount bug - list(...) = $var was using $var multiple times, and thus causing AiCount to be decreased multiple times even though it was increased only once for $var. Mark all FETCH_DIM's so that they won't decrease AiCount, and only decrease AiCount on the last FETCH_DIM. * Fix a stupid bug - forgot to pass CLS_C to some compiler function. For some reason MSVC doesn't report these :I
Diffstat (limited to 'Zend/zend_stack.h')
-rw-r--r--Zend/zend_stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_stack.h b/Zend/zend_stack.h
index abd3652529..55da44c7bf 100644
--- a/Zend/zend_stack.h
+++ b/Zend/zend_stack.h
@@ -17,7 +17,7 @@
#ifndef _ZEND_STACK_H
#define _ZEND_STACK_H
-typedef struct {
+typedef struct _zend_stack {
int top, max;
void **elements;
} zend_stack;