fixes memleak in html_dump_mem

This commit is contained in:
Christian Stocker 2002-05-18 14:23:31 +00:00
parent 81c8b8e7a4
commit 987ab91efb

View file

@ -3408,7 +3408,7 @@ PHP_FUNCTION(domxml_html_dump_mem)
xmlFree(mem);
RETURN_FALSE;
}
RETURN_STRINGL(mem, size, 1);
RETVAL_STRINGL(mem, size, 1);
xmlFree(mem);
}
/* }}} */