fix for Bug #24715 segfault in dom_document_create_element

removed xmlmemorydump debug code
This commit is contained in:
Rob Richards 2003-07-19 14:59:29 +00:00
parent 892c1fbbe7
commit d85845a64b
2 changed files with 5 additions and 5 deletions

View File

@ -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;
}

View File

@ -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;
}