mirror of
https://github.com/php/php-src.git
synced 2025-01-19 10:13:38 +08:00
fix for Bug #24715 segfault in dom_document_create_element
removed xmlmemorydump debug code
This commit is contained in:
parent
892c1fbbe7
commit
d85845a64b
@ -451,16 +451,16 @@ PHP_FUNCTION(dom_document_create_element)
|
||||
xmlNode *node;
|
||||
xmlDocPtr docp;
|
||||
dom_object *intern;
|
||||
int ret, name_len;
|
||||
char *name;
|
||||
int ret, name_len, value_len;
|
||||
char *name, *value = NULL;
|
||||
|
||||
DOM_GET_THIS_OBJ(docp, id, xmlDocPtr, intern);
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &name, &name_len) == FAILURE) {
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &name, &name_len, &value, &value_len) == FAILURE) {
|
||||
return;
|
||||
}
|
||||
|
||||
node = xmlNewDocNode(docp, NULL, name, NULL);
|
||||
node = xmlNewDocNode(docp, NULL, name, value);
|
||||
if (!node) {
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
@ -659,7 +659,7 @@ PHP_MSHUTDOWN_FUNCTION(dom)
|
||||
uncomment the following line, this will tell you the amount of not freed memory
|
||||
and the total used memory into apaches error_log */
|
||||
/* xmlMemoryDump();*/
|
||||
xmlMemoryDump();
|
||||
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user