]> granicus.if.org Git - php/commitdiff
- copy/paste error in startDtd, we do not need the res here
authorPierre Joye <pajoye@php.net>
Wed, 7 Dec 2005 03:20:13 +0000 (03:20 +0000)
committerPierre Joye <pajoye@php.net>
Wed, 7 Dec 2005 03:20:13 +0000 (03:20 +0000)
ext/xmlwriter/php_xmlwriter.c

index 5ce3b97af903b3ace4342738e7967594c2ce6b28..4dc926ae856835f08dd20e2d5dd8f971663a5e13 100644 (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;
                }