summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-04-16 15:06:57 +0200
committerAnatol Belski <ab@php.net>2014-04-16 15:06:57 +0200
commit7a5f1663c6775bbdaf870e4c71ef8813d5d13179 (patch)
tree8dfd857b983837431d48bc24fe930f0ac4872338
parent5224614f23eff18419f2c5489bebe60562e0ce2a (diff)
downloadphp-git-7a5f1663c6775bbdaf870e4c71ef8813d5d13179.tar.gz
correct the bug #67081 fix
-rw-r--r--ext/dom/documenttype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/documenttype.c b/ext/dom/documenttype.c
index 406e468ac8..9042457e86 100644
--- a/ext/dom/documenttype.c
+++ b/ext/dom/documenttype.c
@@ -211,7 +211,7 @@ int dom_documenttype_internal_subset_read(dom_object *obj, zval **retval TSRMLS_
xmlOutputBufferFlush(buff);
#ifdef LIBXML2_NEW_BUFFER
- smart_str_appendl(ret_buf, xmlOutputBufferGetContent(buff), xmlOutputBufferGetSize(buff));
+ smart_str_appendl(&ret_buf, xmlOutputBufferGetContent(buff), xmlOutputBufferGetSize(buff));
#else
smart_str_appendl(&ret_buf, buff->buffer->content, buff->buffer->use);
#endif