diff options
author | Thies C. Arntzen <thies@php.net> | 1999-07-02 15:31:02 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-07-02 15:31:02 +0000 |
commit | d00b516f84247cf6b8035d5f10d4f95fcf40d67a (patch) | |
tree | 807d5bb806adfc7732d4531b487fba0f8a73abac /ext/xml/php3_xml.h | |
parent | c42305c54e112fcee9c3df9c66f89af9a2840151 (diff) | |
download | php-git-d00b516f84247cf6b8035d5f10d4f95fcf40d67a.tar.gz |
losses memory like hell, but seems to work!
3 things (this is a bad hack as of now!):
- xml.c uses _php3_strtoupper
is #include "../standard/php3_string.h" the right way to get the prototype?
- i've copied php3i_long_pval/php3i_string_pval from the php3 tree into
xml.c (this is defnetly WRONG, but where do i find those?)
- as php3tls_pval_destructor is not available in zend, i've
#define php3tls_pval_destructor(a) pval_destructor(a) which is maybe not what we want!
Diffstat (limited to 'ext/xml/php3_xml.h')
-rw-r--r-- | ext/xml/php3_xml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xml/php3_xml.h b/ext/xml/php3_xml.h index 4c1a2f4020..0c4c706d9d 100644 --- a/ext/xml/php3_xml.h +++ b/ext/xml/php3_xml.h @@ -66,7 +66,7 @@ typedef struct { int level; int toffset; int curtag; - pval *ctag; + pval **ctag; char **ltags; int lastwasopen; int skipwhite; |