summaryrefslogtreecommitdiff
path: root/ext/libxml/php_libxml.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-01-10 13:23:58 +0000
committerMarcus Boerger <helly@php.net>2004-01-10 13:23:58 +0000
commitc66c9e7102514bf530fe6a08472e20e7872156f7 (patch)
tree25286c042c2514c01ab268bc383e46de8aabb4fb /ext/libxml/php_libxml.h
parentf5e9ca64b147b0b751243b9e5211ffb6c878fbd6 (diff)
downloadphp-git-c66c9e7102514bf530fe6a08472e20e7872156f7.tar.gz
Fix memory corruption with libxml's error handling.
Diffstat (limited to 'ext/libxml/php_libxml.h')
-rw-r--r--ext/libxml/php_libxml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/libxml/php_libxml.h b/ext/libxml/php_libxml.h
index 0cb5f0d620..d1c6b86903 100644
--- a/ext/libxml/php_libxml.h
+++ b/ext/libxml/php_libxml.h
@@ -42,7 +42,7 @@ extern zend_module_entry libxml_module_entry;
typedef struct {
zval *stream_context;
- smart_str *error_buffer;
+ smart_str error_buffer;
} php_libxml_globals;
typedef struct _php_libxml_ref_obj {