From: Pierre Joye Date: Wed, 7 Dec 2005 03:20:13 +0000 (+0000) Subject: - copy/paste error in startDtd, we do not need the res here X-Git-Tag: RELEASE_1_0_4~502 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ddbc24465e92c5a6516db1d422da1fc213460e6a;p=php - copy/paste error in startDtd, we do not need the res here --- diff --git a/ext/xmlwriter/php_xmlwriter.c b/ext/xmlwriter/php_xmlwriter.c index 5ce3b97af9..4dc926ae85 100644 --- a/ext/xmlwriter/php_xmlwriter.c +++ b/ext/xmlwriter/php_xmlwriter.c @@ -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; }