diff options
author | Melvyn Sopacua <msopacua@php.net> | 2002-11-21 23:28:26 +0000 |
---|---|---|
committer | Melvyn Sopacua <msopacua@php.net> | 2002-11-21 23:28:26 +0000 |
commit | 7732ce7fe332c37430e6fb539a3d64f05cfc38be (patch) | |
tree | 9e8f54fc9eb3f53c37aed3e7635442176626e0b2 /ext/xslt/php_sablot.h | |
parent | 8d42dd7a8bd732245697d2baf22cca62300fb45f (diff) | |
download | php-git-7732ce7fe332c37430e6fb539a3d64f05cfc38be.tar.gz |
Fix bug #20518
Diffstat (limited to 'ext/xslt/php_sablot.h')
-rw-r--r-- | ext/xslt/php_sablot.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/xslt/php_sablot.h b/ext/xslt/php_sablot.h index 6205193715..afa3eedc54 100644 --- a/ext/xslt/php_sablot.h +++ b/ext/xslt/php_sablot.h @@ -46,6 +46,7 @@ extern zend_module_entry xslt_module_entry; #define XSLT_ERRNO(handle) ((handle)->err->no) #define XSLT_ERRSTR(handle) ((handle)->err->str) #define XSLT_LOG(handle) ((handle)->err->log) +#define XSLT_BASE_ISSET(handle) ((handle)->base_isset) #define XSLT_FUNCH_FREE(__var) if (__var) zval_ptr_dtor(&(__var)); #define XSLT_REG_ERRMSG(msg, handle) if (XSLT_ERRSTR(handle)) efree(XSLT_ERRSTR(handle)); \ @@ -124,6 +125,7 @@ typedef struct { struct xslt_processor processor; struct xslt_error *err; zval *object; + unsigned short base_isset; } php_xslt; #else |