- copy/paste error in startDtd, we do not need the res here

This commit is contained in:
Pierre Joye 2005-12-07 03:20:13 +00:00
parent 112f016a39
commit ddbc24465e

View File

@ -1223,7 +1223,7 @@ PHP_FUNCTION(xmlwriter_start_dtd)
zval *this = getThis();
if (this) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|s!s!", &name, &name_len, &pubid, &pubid_len, &sysid, &sysid_len) == FAILURE) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s!s!", &name, &name_len, &pubid, &pubid_len, &sysid, &sysid_len) == FAILURE) {
return;
}