diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-04-22 11:59:53 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-04-22 11:59:53 +0800 |
commit | 89d89b95861c4366f93e705546c0ca8c4443a425 (patch) | |
tree | d59aaef97b53a61bc7c10de368dad7adcc34fef7 /ext/dom/document.c | |
parent | e48b9ad197b4ec6ac72e75538453cc350d0a41f4 (diff) | |
parent | fa588a5c82c0264dc10862495c993a914a421667 (diff) | |
download | php-git-89d89b95861c4366f93e705546c0ca8c4443a425.tar.gz |
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Diffstat (limited to 'ext/dom/document.c')
-rw-r--r-- | ext/dom/document.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dom/document.c b/ext/dom/document.c index 35d8348a2d..b1c1dc2737 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -338,7 +338,7 @@ int dom_document_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) return FAILURE; } - str = zval_get_string(newval TSRMLS_CC); + str = zval_get_string(newval); handler = xmlFindCharEncodingHandler(Z_STRVAL_P(newval)); @@ -436,7 +436,7 @@ int dom_document_version_write(dom_object *obj, zval *newval TSRMLS_DC) xmlFree((xmlChar *) docp->version ); } - str = zval_get_string(newval TSRMLS_CC); + str = zval_get_string(newval); docp->version = xmlStrdup((const xmlChar *) str->val); @@ -664,7 +664,7 @@ int dom_document_document_uri_write(dom_object *obj, zval *newval TSRMLS_DC) xmlFree((xmlChar *) docp->URL); } - str = zval_get_string(newval TSRMLS_CC); + str = zval_get_string(newval); docp->URL = xmlStrdup((const xmlChar *) str->val); |