diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2011-08-08 13:45:18 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2011-08-08 13:45:18 +0000 |
commit | bfdd53cd045ceff446f63ca0b97102a1a299d1ba (patch) | |
tree | 4c2a92b795fe2f0d584a957fdd5bacd3e7649064 /ext/dom/text.c | |
parent | 0c1516f1741fcab7dd543d1469df6ff35d72d734 (diff) | |
download | php-git-bfdd53cd045ceff446f63ca0b97102a1a299d1ba.tar.gz |
Removal of deadcode identified by coverity
Diffstat (limited to 'ext/dom/text.c')
-rw-r--r-- | ext/dom/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/text.c b/ext/dom/text.c index b418345cb0..b175e57933 100644 --- a/ext/dom/text.c +++ b/ext/dom/text.c @@ -196,7 +196,7 @@ PHP_FUNCTION(dom_text_split_text) nnode->type = XML_TEXT_NODE; } - return_value = php_dom_create_object(nnode, &ret, NULL, return_value, intern TSRMLS_CC); + return_value = php_dom_create_object(nnode, &ret, return_value, intern TSRMLS_CC); } /* }}} end dom_text_split_text */ |