Skip to content

Commit 7a5f166

Browse files
committed
correct the bug #67081 fix
1 parent 5224614 commit 7a5f166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/dom/documenttype.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ int dom_documenttype_internal_subset_read(dom_object *obj, zval **retval TSRMLS_
211211
xmlOutputBufferFlush(buff);
212212

213213
#ifdef LIBXML2_NEW_BUFFER
214-
smart_str_appendl(ret_buf, xmlOutputBufferGetContent(buff), xmlOutputBufferGetSize(buff));
214+
smart_str_appendl(&ret_buf, xmlOutputBufferGetContent(buff), xmlOutputBufferGetSize(buff));
215215
#else
216216
smart_str_appendl(&ret_buf, buff->buffer->content, buff->buffer->use);
217217
#endif

0 commit comments

Comments
 (0)